about summary refs log tree commit diff homepage
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2023-02-03 11:07:07 +0000
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2023-02-06 09:33:53 +0000
commite92f0d9bba0d109232db323d41d0443dbdd5c121 (patch)
tree20cf63b7bd2d1e7248bbb5a66242da6734362e58 /.cirrus.yml
parentfc778afc9029c48b78aa59c20cdf3e8223a88081 (diff)
downloadklee-e92f0d9bba0d109232db323d41d0443dbdd5c121.tar.gz
Use LLVM 11 for FreeBSD testing (package llvm90 is not available anymore)
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 8ac70fe5..cda56fe1 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -6,13 +6,13 @@ task:
   deps_script:
     - sed -i.bak -e 's/quarterly/latest/' /etc/pkg/FreeBSD.conf
     - env ASSUME_ALWAYS_YES=yes pkg update -f
-    - env ASSUME_ALWAYS_YES=yes pkg install -y llvm90 gmake z3 cmake pkgconf google-perftools python3 py39-sqlite3 py39-tabulate
+    - env ASSUME_ALWAYS_YES=yes pkg install -y llvm11 gmake z3 cmake pkgconf google-perftools python3 py39-sqlite3 py39-tabulate
   build_script:
     - mkdir build
     - cd build
-    - cmake -DLLVM_CONFIG_BINARY=/usr/local/bin/llvm-config90 -DMAKE_BINARY=/usr/local/bin/gmake -DENABLE_TCMALLOC:BOOL=true -DENABLE_POSIX_RUNTIME:BOOL=ON -DENABLE_SOLVER_Z3:BOOL=true -DENABLE_SYSTEM_TESTS:BOOL=ON ..
+    - cmake -DLLVM_CONFIG_BINARY=/usr/local/bin/llvm-config11 -DMAKE_BINARY=/usr/local/bin/gmake -DENABLE_TCMALLOC:BOOL=true -DENABLE_POSIX_RUNTIME:BOOL=ON -DENABLE_SOLVER_Z3:BOOL=true -DENABLE_SYSTEM_TESTS:BOOL=ON ..
     - gmake
   test_script:
-    - sed -i.bak -e 's/lit\./lit90\./' test/lit.cfg
+    - sed -i.bak -e 's/lit\./lit11\./' test/lit.cfg
     - cd build
     - gmake check