Skip to content

Commit

Permalink
Updated GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Mar 18, 2024
1 parent 635c71f commit af34404
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/swift-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,21 @@ jobs:
- name: Archive Build artifacts
uses: actions/upload-artifact@v3
with:
name: linux-armv7-crosscompile-test
path: .build/*/*.xctest
name: linux-armv7-crosscompile
path: .build/*/solartool

linux-swift-arm64:
name: Linux ARM64
runs-on: [self-hosted, linux, ARM64]
container:
image: swift:5.10-jammy
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build (Release)
run: swift build -c release
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-linux-arm64
path: ".build/aarch64-unknown-linux-gnu/release/solartool"
4 changes: 2 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Install Swift
uses: slashmo/[email protected]
with:
version: 5.7.3
version: 5.9
- name: Checkout
uses: actions/checkout@v2
- name: Swift Version
Expand All @@ -25,7 +25,7 @@ jobs:
name: Linux
strategy:
matrix:
swift: [5.6.3, 5.7.3]
swift: [5.7.3, 5.9]
runs-on: ubuntu-20.04
steps:
- name: Install Swift
Expand Down

0 comments on commit af34404

Please sign in to comment.