|
|
@ -23,8 +23,15 @@ env: |
|
|
|
BRANCH_NAME: "release-1.18.x" # Used for naming artifacts |
|
|
|
BRANCH_NAME: "release-1.18.x" # Used for naming artifacts |
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
jobs: |
|
|
|
|
|
|
|
check-ent: |
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
if: ${{ endsWith(github.repository, '-enterprise') }} |
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
|
|
- run: echo "Building Enterprise" |
|
|
|
|
|
|
|
|
|
|
|
setup: |
|
|
|
setup: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
needs: [check-ent] |
|
|
|
name: Setup |
|
|
|
name: Setup |
|
|
|
outputs: |
|
|
|
outputs: |
|
|
|
compute-small: ${{ steps.runners.outputs.compute-small }} |
|
|
|
compute-small: ${{ steps.runners.outputs.compute-small }} |
|
|
@ -41,6 +48,7 @@ jobs: |
|
|
|
run: .github/scripts/get_runner_classes.sh |
|
|
|
run: .github/scripts/get_runner_classes.sh |
|
|
|
|
|
|
|
|
|
|
|
get-go-version: |
|
|
|
get-go-version: |
|
|
|
|
|
|
|
needs: [check-ent] |
|
|
|
uses: ./.github/workflows/reusable-get-go-version.yml |
|
|
|
uses: ./.github/workflows/reusable-get-go-version.yml |
|
|
|
|
|
|
|
|
|
|
|
dev-build: |
|
|
|
dev-build: |
|
|
@ -418,7 +426,7 @@ jobs: |
|
|
|
- upgrade-integration-test |
|
|
|
- upgrade-integration-test |
|
|
|
- upgrade-integration-test-deployer |
|
|
|
- upgrade-integration-test-deployer |
|
|
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }} |
|
|
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-small) }} |
|
|
|
if: ${{ always() }} |
|
|
|
if: ${{ always() && endsWith(github.repository, '-enterprise') }} |
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- name: evaluate upstream job results |
|
|
|
- name: evaluate upstream job results |
|
|
|
run: | |
|
|
|
run: | |
|
|
|