From 22908ba7b815328d5116169003b722752b62c3c9 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Sun, 15 Sep 2024 20:52:35 +0100 Subject: [PATCH] Remove Linux from CI build --- .github/workflows/ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2701fc43..525559f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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