Skip to content

Commit

Permalink
Remove Linux from CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
adamayoung committed Sep 15, 2024
1 parent df7c2da commit 22908ba
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,19 @@ jobs:
- name: Test
run: set -o pipefail && NSUnbufferedIO=YES xcodebuild test-without-building -scheme TMDb -only-testing TMDbTests -destination '${{ matrix.destination }}'

build-test-linux:
name: Build and Test (Linux)
runs-on: ubuntu-latest
container: swiftlang/swift:nightly-6.0-jammy
steps:
- name: Checkout
uses: actions/checkout@v4
# build-test-linux:
# name: Build and Test (Linux)
# runs-on: ubuntu-latest
# container: swiftlang/swift:nightly-6.0-jammy
# steps:
# - name: Checkout
# uses: actions/checkout@v4

- name: Build
run: swift build --build-tests -Xswiftc -warnings-as-errors -Xswiftc -strict-concurrency=complete
# - name: Build
# run: swift build --build-tests -Xswiftc -warnings-as-errors -Xswiftc -strict-concurrency=complete

- name: Test
run: swift test --skip-build --filter TMDbTests -Xswiftc -strict-concurrency=complete
# - name: Test
# run: swift test --skip-build --filter TMDbTests -Xswiftc -strict-concurrency=complete

- name: Build for Release
run: swift build -c release -Xswiftc -warnings-as-errors -Xswiftc -strict-concurrency=complete
# - name: Build for Release
# run: swift build -c release -Xswiftc -warnings-as-errors -Xswiftc -strict-concurrency=complete

0 comments on commit 22908ba

Please sign in to comment.