Skip to content

Commit

Permalink
Downgrade ubuntu runner
Browse files Browse the repository at this point in the history
  • Loading branch information
max-leuthaeuser committed Feb 16, 2024
1 parent a0f2df0 commit 129695b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-20.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -19,7 +19,7 @@ jobs:
with:
swift-version: "5.9"
- name: Run Linux Build
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
run: |
swift build
mv ./.build/debug/SwiftAstGen SwiftAstGen-linux
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-20.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -26,7 +26,7 @@ jobs:
with:
swift-version: "5.9"
- name: Run Linux Build
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
run: |
swift build -c release --arch arm64 --arch x86_64 --static-swift-stdlib
mv ./.build/release/SwiftAstGen SwiftAstGen-linux
Expand Down

0 comments on commit 129695b

Please sign in to comment.