Lines Matching +full:gcc +full:- +full:valgrind
14 shell: /bin/bash --login
16 …t or see https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-other-…
18 CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
19 CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
20 …# In CircleCI 1.0 we used a pre-configured image with a large number of languages and other packag…
21 # In CircleCI 2.0 you can now specify your own image, or use one of our pre-configured images.
23 # We have selected a pre-built image that mirrors the build environment we use on
26 # VM instead of a container) see https://circleci.com/docs/2.0/executor-types/
27 # To see the list of pre-built images that CircleCI provides for most common languages see
28 # https://circleci.com/docs/2.0/circleci-images/
30 - image: circleci/build-image:ubuntu-14.04-XXL-upstart-1189-5614f37
36 - checkout
40 - run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS
42 # This would typically go in either a build or a build-and-test job when using workflows
44 - restore_cache:
47 - v1-dep-{{ .Branch }}-
49 - v1-dep-dev-
50 …# Any branch if there are none on the default branch - this should be unnecessary if you have your…
51 - v1-dep-
53 - run: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; sudo apt-get -y -qq update
54 - run: sudo apt-get -y install qemu-system-ppc qemu-user-static gcc-powerpc-linux-gnu
55 …- run: sudo apt-get -y install qemu-system-arm gcc-arm-linux-gnueabi libc6-dev-armel-cross gcc-aar…
56 - run: sudo apt-get -y install libc6-dev-i386 clang gcc-5 gcc-5-multilib gcc-6 valgrind
58 - save_cache:
59 key: v1-dep-{{ .Branch }}-{{ epoch }}
63 - vendor/bundle
64 - ~/virtualenvs
65 - ~/.m2
66 - ~/.ivy2
67 - ~/.bundle
68 - ~/.go_workspace
69 - ~/.gradle
70 - ~/.cache/bower
74 - run: clang -v; make clangtest && make clean
75 - run: g++ -v; make gpptest && make clean
76 - run: gcc -v; make c_standards && make clean
77 - run: gcc -v; g++ -v; make ctocpptest && make clean
78 - run: gcc-5 -v; CC=gcc-5 CFLAGS="-O2 -Werror" make check && make clean
79 …- run: gcc-5 -v; CC=gcc-5 CFLAGS="-O2 -m32 -Werror" CPPFLAGS=-I/usr/include/x86_64-linux-gnu make …
80 - run: gcc-6 -v; CC=gcc-6 make c_standards && make clean
81 - run: gcc-6 -v; CC=gcc-6 MOREFLAGS="-O2 -Werror" make check && make clean
82 - run: make cmake && make clean
83 - run: make -C tests test-lz4
84 - run: make -C tests test-lz4c
85 - run: make -C tests test-frametest
86 - run: make -C tests test-fullbench
87 - run: make -C tests test-fuzzer && make clean
88 - run: make -C lib all && make clean
89 …- run: pyenv global 3.4.4; make versionsTest MOREFLAGS=-I/usr/include/x86_64-linux-gnu && make cle…
90 - run: make travis-install && make clean
91 …- run: gcc -v; CFLAGS="-O2 -m32 -Werror" CPPFLAGS=-I/usr/include/x86_64-linux-gnu make check && ma…
92 - run: make usan && make clean
93 - run: clang -v; make staticAnalyze && make clean
94 - run: make -C tests test-mem && make clean
95 …- run: make platformTest CC=powerpc-linux-gnu-gcc QEMU_SYS=qemu-ppc-static && mak…
96 …- run: make platformTest CC=powerpc-linux-gnu-gcc QEMU_SYS=qemu-ppc64-static MOREFLAGS=-m64 && mak…
97 …- run: make platformTest CC=arm-linux-gnueabi-gcc QEMU_SYS=qemu-arm-static && mak…
98 …- run: make platformTest CC=aarch64-linux-gnu-gcc QEMU_SYS=qemu-aarch64-static && mak…
102 - store_test_results:
103 path: /tmp/circleci-test-results
105 - store_artifacts:
106 path: /tmp/circleci-artifacts
107 - store_artifacts:
108 path: /tmp/circleci-test-results