File tree 3 files changed +19
-0
lines changed
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 17
17
path : ~/build/Testing/Temporary/LastTest.log
18
18
destination : Test.log
19
19
20
+ gcc_48_test :
21
+ resource_class : xlarge
22
+ docker :
23
+ - image : ubuntu:18.04
24
+ steps :
25
+ - checkout
26
+ - run : ./ci/setup_ci_environment.sh
27
+ - run : ./ci/install_bazelisk.sh
28
+ - run : ./ci/install_gcc48.sh
29
+ - run : CC=/usr/bin/g++-4.8 ./ci/do_ci.sh bazel.test
30
+
20
31
bazel_test :
21
32
resource_class : xlarge
22
33
docker :
@@ -48,6 +59,7 @@ workflows:
48
59
build_and_test :
49
60
jobs :
50
61
- cmake_test
62
+ - gcc_48_test
51
63
- bazel_test
52
64
- osx_test
53
65
- windows
Original file line number Diff line number Diff line change @@ -8,4 +8,5 @@ ADD install_bazelisk.sh /setup-ci
8
8
9
9
RUN /setup-ci/setup_ci_environment.sh \
10
10
&& /setup-ci/setup_cmake.sh \
11
+ && /setup-ci/install_gcc48.sh \
11
12
&& /setup-ci/install_bazelisk.sh
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+ apt-get update
5
+ apt-get install --no-install-recommends --no-install-suggests -y \
6
+ g++-4.8
You can’t perform that action at this time.
0 commit comments