diff options
author | Ayke van Laethem <[email protected]> | 2024-05-18 12:55:35 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-05-24 19:12:26 +0200 |
commit | 81ce7fb738142361afba119f1f531cf6ffddc6d1 (patch) | |
tree | 68559a44ba49457b5ef9a5f2381fab1eae0276ff /.circleci | |
parent | c2776dcf78125abb86e3e7b4a110bb0d07386d09 (diff) | |
download | tinygo-81ce7fb738142361afba119f1f531cf6ffddc6d1.tar.gz tinygo-81ce7fb738142361afba119f1f531cf6ffddc6d1.zip |
LLVM 18 support
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index c9c9d6504..a94040606 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,12 +10,12 @@ commands: steps: - restore_cache: keys: - - llvm-source-17-v1 + - llvm-source-18-v1 - run: name: "Fetch LLVM source" command: make llvm-source - save_cache: - key: llvm-source-17-v1 + key: llvm-source-18-v1 paths: - llvm-project/clang/lib/Headers - llvm-project/clang/include @@ -105,12 +105,12 @@ jobs: - test-linux: llvm: "15" resource_class: large - test-llvm17-go122: + test-llvm18-go122: docker: - image: golang:1.22-bullseye steps: - test-linux: - llvm: "17" + llvm: "18" resource_class: large workflows: @@ -119,5 +119,5 @@ workflows: # This tests our lowest supported versions of Go and LLVM, to make sure at # least the smoke tests still pass. - test-llvm15-go118 - # This tests LLVM 17 support when linking against system libraries. - - test-llvm17-go122 + # This tests LLVM 18 support when linking against system libraries. + - test-llvm18-go122 |