diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-18 17:35:43 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-18 17:35:43 -0500 |
commit | 6318d874995f3243f1845409aea402414c5806cd (patch) | |
tree | 111272f0a3f89affdc7df694de8d90d669ac1f6a /.circleci | |
parent | ae4e4ba655f2d0d8a5cc8488ada628726e9cc147 (diff) | |
download | haskell-6318d874995f3243f1845409aea402414c5806cd.tar.gz |
circleci: Fix LLVM build
Might as well make sure it works before we retire it.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index dedb281ac4..31b64a1c22 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -252,19 +252,15 @@ jobs: - *push_perf_note - *store_test_artifacts - "validate-x86_64-linux-deb8-llvm": + "validate-x86_64-linux-deb9-llvm": docker: - - image: ghcci/x86_64-linux-deb8:0.1 + - image: ghcci/x86_64-linux-deb9:0.2 environment: <<: *buildenv BUILD_FLAVOUR: perf-llvm - TEST_ENV: x86_64-linux-deb8-llvm + TEST_ENV: x86_64-linux-deb9-llvm steps: - run: - name: Install LLVM - command: | - echo "export PATH=`pwd`/../clang+llvm-6.0.0-x86_64-linux-gnu-debian8/bin:\$PATH" >> $BASH_ENV - - run: name: Verify that llc works command: llc - checkout |