From 2e70de4e77f53cb481c56c4d7942fc3faff5f274 Mon Sep 17 00:00:00 2001 From: Nick Lockwood Date: Wed, 27 Nov 2024 00:22:20 +0000 Subject: [PATCH] Remove standalone linux build action --- .github/workflows/linux_build.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/linux_build.yml diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml deleted file mode 100644 index 8226a256..00000000 --- a/.github/workflows/linux_build.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Build for Linux - -on: - workflow_dispatch: - inputs: - ref: - description: 'Ref to build (branch, tag or SHA)' - required: false - default: 'main' - -jobs: - build: - name: Build SwiftFormat for Linux - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ github.event.inputs.ref }} - - name: Build it - run: | - swift build --configuration release --static-swift-stdlib --enable-dead-strip - SWIFTFORMAT_BIN_PATH=`swift build --configuration release --show-bin-path` - mv $SWIFTFORMAT_BIN_PATH/swiftformat "${HOME}/swiftformat_linux" - - name: 'Upload Artifact' - uses: actions/upload-artifact@v4 - with: - name: swiftformat_linux - path: ~/swiftformat_linux - retention-days: 5