Skip to content

Commit

Permalink
Streamline main
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Apr 23, 2024
1 parent 1f6d34f commit 677a0e7
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,38 +27,31 @@ jobs:
with:
runsOn: ${{ matrix.runsOn }}

test-amd64:
test:
needs: build
strategy:
fail-fast: false
matrix:
# NOTE: amd64 full-stack image is tested during build step
target: ["base", "lab", "base-with-services"]
target: [base, lab, base-with-services, full-stack]
runsOn: [ubuntu-22.04] #, ARM64

uses: ./.github/workflows/test.yml
#if: matrix.runsOn == 'ubuntu-22.04' || matrix.target == 'full-stack'
if: false
with:
runsOn: ubuntu-22.04
runsOn: ${{ matrix.runsOn }}
images: ${{ needs.build.outputs.images }}
target: ${{ matrix.target }}
integration: false

# To save self-hosted runner resources, we're only testing full-stack image
test-arm64:
needs: build
uses: ./.github/workflows/test.yml
with:
runsOn: ARM64
images: ${{ needs.build.outputs.images }}
target: "full-stack"
integration: false

test-integration:
needs: build
strategy:
fail-fast: false
matrix:
runner: ["ubuntu-22.04"] #, "ARM64"]
uses: ./.github/workflows/test.yml
if: false
with:
runsOn: ${{ matrix.runner }}
images: ${{ needs.build.outputs.images }}
Expand Down

0 comments on commit 677a0e7

Please sign in to comment.