From b086c85d9f826fff05b9a6bcf66625865f48dd6d Mon Sep 17 00:00:00 2001 From: Dmitry Atamanov Date: Mon, 31 Oct 2022 10:52:57 +0500 Subject: [PATCH] Add LLVM 15 to CI --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a6824528e..355769727 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ on: branches: [ master ] env: - LLVM_RELEASE_VERSION: 14 + LLVM_RELEASE_VERSION: 15 jobs: @@ -79,8 +79,8 @@ jobs: install: git binutils mingw-w64-x86_64-ninja mingw-w64-x86_64-cmake mingw-w64-x86_64-toolchain mingw-w64-x86_64-python - shell: msys2 {0} run: | - pacman --noconfirm -U https://mirror.msys2.org/mingw/mingw64/mingw-w64-x86_64-llvm-13.0.1-2-any.pkg.tar.zst - pacman --noconfirm -U https://mirror.msys2.org/mingw/mingw64/mingw-w64-x86_64-lld-13.0.1-2-any.pkg.tar.zst + pacman --noconfirm -U https://mirror.msys2.org/mingw/mingw64/mingw-w64-x86_64-llvm-15.0.3-1-any.pkg.tar.zst + pacman --noconfirm -U https://mirror.msys2.org/mingw/mingw64/mingw-w64-x86_64-lld-15.0.3-1-any.pkg.tar.zst - name: CMake run: | cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} @@ -106,7 +106,7 @@ jobs: - name: run compiler tests run: | cd test - python3 src/tester.py ../build/c3c.exe test_suite/ + python3 src/tester.py ../build/c3c.exe test_suite2/ build-msys2-clang: