From 33ec81cb912563cc488f84a58643fc371e96ee75 Mon Sep 17 00:00:00 2001 From: 0vercl0k <1476421+0vercl0k@users.noreply.github.com> Date: Sun, 21 Apr 2024 17:51:00 -0700 Subject: [PATCH 1/3] bump clang version --- .github/workflows/rp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rp.yml b/.github/workflows/rp.yml index ac47105..9b2c6f9 100644 --- a/.github/workflows/rp.yml +++ b/.github/workflows/rp.yml @@ -73,8 +73,8 @@ 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 From 51d8c05d319d598f4255b9c76750733ca67d0647 Mon Sep 17 00:00:00 2001 From: 0vercl0k <1476421+0vercl0k@users.noreply.github.com> Date: Mon, 13 May 2024 07:55:45 -0700 Subject: [PATCH 2/3] v4 --- .github/workflows/rp.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rp.yml b/.github/workflows/rp.yml index 9b2c6f9..426dc66 100644 --- a/.github/workflows/rp.yml +++ b/.github/workflows/rp.yml @@ -13,7 +13,7 @@ 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 @@ -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: | @@ -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: | @@ -81,7 +81,7 @@ jobs: ./build-release.sh - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: rp-lin-${{ matrix.compiler }} path: | @@ -92,7 +92,7 @@ jobs: name: OSX Latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build with clang env: @@ -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: | From 25c2205540787def47d622baa71d86080da5106d Mon Sep 17 00:00:00 2001 From: 0vercl0k <1476421+0vercl0k@users.noreply.github.com> Date: Mon, 13 May 2024 08:05:15 -0700 Subject: [PATCH 3/3] v2 --- .github/workflows/rp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rp.yml b/.github/workflows/rp.yml index 426dc66..c73a500 100644 --- a/.github/workflows/rp.yml +++ b/.github/workflows/rp.yml @@ -16,7 +16,7 @@ jobs: 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