From ace0cdea6224346a71ebdfed5ba41d44e2128316 Mon Sep 17 00:00:00 2001 From: Itxaka Date: Wed, 20 Sep 2023 14:02:30 +0200 Subject: [PATCH] DEBUG: Test like on master Signed-off-by: Itxaka --- .github/workflows/image-pr.yaml | 89 --------------------------------- .github/workflows/image.yaml | 6 +-- 2 files changed, 1 insertion(+), 94 deletions(-) delete mode 100644 .github/workflows/image-pr.yaml diff --git a/.github/workflows/image-pr.yaml b/.github/workflows/image-pr.yaml deleted file mode 100644 index 150d879127..0000000000 --- a/.github/workflows/image-pr.yaml +++ /dev/null @@ -1,89 +0,0 @@ -name: Build and test PRs -on: - pull_request: - paths: - - '**' - -concurrency: - group: ci-image-${{ github.head_ref || github.ref }}-${{ github.repository }} - cancel-in-progress: true -env: - FORCE_COLOR: 1 -jobs: - core: - uses: ./.github/workflows/reusable-build-flavor.yaml - with: - flavor: ubuntu - - install: - uses: ./.github/workflows/reusable-install-test.yaml - with: - flavor: ubuntu - needs: - - core - - zfs: - uses: ./.github/workflows/reusable-zfs-test.yaml - with: - flavor: ubuntu - needs: - - core - - acceptance: - uses: ./.github/workflows/reusable-qemu-acceptance-test.yaml - with: - flavor: ubuntu - needs: - - core - - bundles: - uses: ./.github/workflows/reusable-qemu-bundles-test.yaml - with: - flavor: ubuntu - needs: - - core - - reset: - uses: ./.github/workflows/reusable-qemu-reset-test.yaml - with: - flavor: ubuntu - needs: - - core - - netboot: - uses: ./.github/workflows/reusable-qemu-netboot-test.yaml - with: - flavor: ubuntu - needs: - - core - - upgrade: - uses: ./.github/workflows/reusable-upgrade-with-cli-test.yaml - with: - flavor: ubuntu - needs: - - core - - upgrade-latest: - uses: ./.github/workflows/reusable-upgrade-latest-test.yaml - with: - flavor: ubuntu - needs: - - core - - encryption: - uses: ./.github/workflows/reusable-encryption-test.yaml - with: - flavor: ubuntu - label: ${{ matrix.label }} - needs: - - core - strategy: - fail-fast: true - matrix: - label: - - "local-encryption" - - "remote-auto" - - "remote-static" - - "remote-https-pinned" - - "remote-https-bad-cert" diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index c1c6d7aaea..3bd7060a20 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -1,10 +1,6 @@ name: Build and test images on: - push: - branches: - - master - paths: - - '**' + pull_request: concurrency: group: ci-image-${{ github.head_ref || github.ref }}-${{ github.repository }}