@@ -231,50 +231,51 @@ jobs:
231231 fi
232232 make CERAMIC_ONE_IMAGE_TAG="${{ needs.build.outputs.image_tag }}" TEST_SELECTOR="$test_selector" HERMETIC_CMD=../bin/hermetic-driver hermetic-tests
233233
234- run-migration-tests :
235- name : Run Migration Tests
236- runs-on : ubuntu-latest
237- environment : tnet-prod-2024
238- needs :
239- - build-driver
240- - publish-suite
241- - generate-matrix # Needed to know the BUILD_TAG
242- - build
243- steps :
244- -
245- name : Checkout
246- uses : actions/checkout@v3
247- -
248- name : Setup GKE auth
249- uses : ' google-github-actions/auth@v1'
250- with :
251- credentials_json : ${{ secrets.GKE_SA_KEY }}
252- -
253- name : Get GKE credentials
254- uses : ' google-github-actions/get-gke-credentials@v1'
255- with :
256- cluster_name : ${{ vars.GKE_CLUSTER }}
257- location : ${{ vars.GKE_ZONE }}
258- - uses : actions/download-artifact@master
259- with :
260- name : hermetic-driver
261- path : ./bin
262- -
263- name : Test migration ${{ matrix.networks }}
264- run : |
265- set -euxo pipefail
266- cd tests
267- export BUILD_TAG=${{ needs.generate-matrix.outputs.build_tag }}
268- TEST_NETWORK=./migration-networks/basic-go-rust-post.yaml
269- chmod +x ../bin/hermetic-driver
270-
271- make CERAMIC_ONE_IMAGE_TAG="${{ needs.build.outputs.image_tag }}" HERMETIC_CMD=../bin/hermetic-driver migration-tests
234+ # run-migration-tests:
235+ # name: Run Migration Tests
236+ # runs-on: ubuntu-latest
237+ # environment: tnet-prod-2024
238+ # needs:
239+ # - build-driver
240+ # - publish-suite
241+ # - generate-matrix #Needed to know the BUILD_TAG
242+ # - build
243+ # steps:
244+ # -
245+ # name: Checkout
246+ # uses: actions/checkout@v3
247+ # -
248+ # name: Setup GKE auth
249+ # uses: 'google-github-actions/auth@v1'
250+ # with:
251+ # credentials_json: ${{ secrets.GKE_SA_KEY }}
252+ # -
253+ # name: Get GKE credentials
254+ # uses: 'google-github-actions/get-gke-credentials@v1'
255+ # with:
256+ # cluster_name: ${{ vars.GKE_CLUSTER }}
257+ # location: ${{ vars.GKE_ZONE }}
258+ # - uses: actions/download-artifact@master
259+ # with:
260+ # name: hermetic-driver
261+ # path: ./bin
262+ # -
263+ # name: Test migration ${{ matrix.networks }}
264+ # run: |
265+ # set -euxo pipefail
266+ # cd tests
267+ # export BUILD_TAG=${{ needs.generate-matrix.outputs.build_tag }}
268+ # TEST_NETWORK=./migration-networks/basic-go-rust-post.yaml
269+ # chmod +x ../bin/hermetic-driver
270+ #
271+ # make CERAMIC_ONE_IMAGE_TAG="${{ needs.build.outputs.image_tag }}" HERMETIC_CMD=../bin/hermetic-driver migration-tests
272272
273273 integration-test-results :
274274 name : Hermetic Test Results
275275 if : ${{ always() }}
276276 runs-on : ubuntu-latest
277- needs : [run-integration-tests, run-migration-tests]
277+ # needs: [run-integration-tests, run-migration-tests]
278+ needs : [run-integration-tests]
278279 steps :
279280 - run : exit 1
280281 # see https://stackoverflow.com/a/67532120/4907315
0 commit comments