Skip to content

Commit

Permalink
Bump clang-version in CI (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
0vercl0k authored May 13, 2024
1 parent 473d4b2 commit 2f45c4f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/rp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
name: Windows latest / ${{ matrix.generator }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
uses: microsoft/setup-msbuild@v2

- name: Setup vs prompt
uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Upload artifacts
if: matrix.generator == 'ninja'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rp-win
path: |
Expand All @@ -52,7 +52,7 @@ jobs:
name: Ubuntu Latest / ${{ matrix.compiler }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Installing dependencies
run: |
Expand All @@ -73,15 +73,15 @@ jobs:
- name: Build with clang
if: matrix.compiler == 'clang'
env:
CC: clang-17
CXX: clang++-17
CC: clang-18
CXX: clang++-18
run: |
cd src/build
chmod u+x ./build-release.sh
./build-release.sh
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rp-lin-${{ matrix.compiler }}
path: |
Expand All @@ -92,7 +92,7 @@ jobs:
name: OSX Latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build with clang
env:
Expand All @@ -104,7 +104,7 @@ jobs:
./build-release-osx.sh
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rp-osx
path: |
Expand Down

0 comments on commit 2f45c4f

Please sign in to comment.