From d5a76bb0cd0532b23e425e586a45e1001209f8e5 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 2 Apr 2024 14:14:26 -0400 Subject: [PATCH] ci: Remove WIP packaging workflow If we want it we'll bring it back, the fact that it was just empty lines was causing us to have failures in actions. Signed-off-by: Colin Walters --- .github/workflows/packaging.yml | 36 --------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/packaging.yml diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml deleted file mode 100644 index 7b40f945..00000000 --- a/.github/workflows/packaging.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This is an unused WIP. Maybe we'll use it in the future -# name: Packaging - -# permissions: -# actions: read - -# on: -# push: -# branches: [main] -# pull_request: -# branches: [main] -# types: [labeled, opened, synchronize, reopened] -# workflow_dispatch: {} - -# jobs: -# srpm: -# if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/full') }} -# runs-on: ubuntu-latest -# container: quay.io/coreos-assembler/fcos-buildroot:testing-devel -# steps: -# - uses: actions/checkout@v3 -# - name: Mark git checkout as safe -# run: git config --global --add safe.directory "$GITHUB_WORKSPACE" -# - name: Cache Dependencies -# uses: Swatinem/rust-cache@v2 -# with: -# key: "srpm" -# - name: Install vendor tool -# run: cargo install cargo-vendor-filterer -# - name: Build -# run: cargo xtask package-srpm -# - name: Upload -# uses: actions/upload-artifact@v2 -# with: -# name: bootc-srpm -# path: target/*.src.rpm