Skip to content

Commit

Permalink
Clean CI warnings, build with GCC12 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
0vercl0k authored Dec 17, 2022
1 parent e121c44 commit da365d2
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/rp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ name: Builds

on: [push, pull_request]

permissions:
actions: read
contents: read
security-events: write

jobs:
Windows:
runs-on: windows-latest
Expand All @@ -18,7 +13,7 @@ jobs:
name: Windows latest / ${{ matrix.generator }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
Expand All @@ -40,7 +35,7 @@ jobs:
- name: Upload artifacts
if: matrix.generator == 'ninja'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: rp-win
path: |
Expand All @@ -57,7 +52,7 @@ jobs:
name: Ubuntu Latest / ${{ matrix.compiler }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Installing dependencies
run: |
Expand Down Expand Up @@ -86,7 +81,7 @@ jobs:
./build-release.sh
- name: Upload artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: rp-lin-${{ matrix.compiler }}
path: |
Expand All @@ -97,7 +92,7 @@ jobs:
name: OSX Latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

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

0 comments on commit da365d2

Please sign in to comment.