Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump clang-version in CI #57

Merged
merged 3 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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