From 47018824283e08c8275b44b9ff53090e75e15bab Mon Sep 17 00:00:00 2001 From: Wayne Starr Date: Thu, 20 Jun 2024 15:21:27 -0600 Subject: [PATCH] feedback --- .github/workflows/tag-and-release.yaml | 6 +++++- tasks/publish.yaml | 8 ++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tag-and-release.yaml b/.github/workflows/tag-and-release.yaml index f35b5eb6..06e5d2f8 100644 --- a/.github/workflows/tag-and-release.yaml +++ b/.github/workflows/tag-and-release.yaml @@ -22,7 +22,8 @@ jobs: publish-package: needs: tag-new-version if: ${{ needs.tag-new-version.outputs.release_created == 'true' }} - runs-on: ${{ matrix.architecture == 'arm64' && 'uds-ubuntu-arm64-8-core' || 'uds-ubuntu-big-boy-8-core' }} + # TODO: (@WSTARR) since we don't run the tests on arm currently we don't need to use the 8 core + runs-on: ${{ matrix.architecture == 'arm64' && 'uds-ubuntu-arm64-4-core' || 'uds-ubuntu-big-boy-8-core' }} name: Publish ${{ matrix.flavor }} ${{ matrix.architecture }} strategy: matrix: @@ -51,6 +52,9 @@ jobs: - name: Build Package run: uds run -f tasks/publish.yaml build-package --set FLAVOR=${{ matrix.flavor }} + + - name: Build Bundle + run: uds run -f tasks/publish.yaml build-test-bundle --set FLAVOR=${{ matrix.flavor }} - name: Test Package if: ${{ runner.arch != 'ARM64' }} diff --git a/tasks/publish.yaml b/tasks/publish.yaml index c9695b7a..de861f3d 100644 --- a/tasks/publish.yaml +++ b/tasks/publish.yaml @@ -12,11 +12,15 @@ tasks: actions: - task: create:package - - name: test-package - description: Test the package + - name: build-test-bundle + description: Build the test bundle actions: - task: dependencies:create - task: create:test-bundle + + - name: test-package + description: Test the package + actions: - task: setup:k3d-test-cluster - task: deploy:test-bundle - task: setup:create-doug-user