Skip to content

Commit

Permalink
Make test suite url fetching local to the test jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaiaeroastro committed Jul 9, 2024
1 parent 12db7aa commit 42e4130
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -540,17 +540,6 @@ jobs:
else
echo "run_integration_tests=false" >> $GITHUB_OUTPUT
fi
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Fetch the latest integration SDK url
run: |
echo "LATEST_INTEGRATION_TEST_SDK_URL=$(python CI/ci_cd_helper.py fetch-integration-test-sdk-url 0 | xargs)" >> $GITHUB_ENV

integration-tests-latest-release:
Expand Down Expand Up @@ -596,6 +585,7 @@ jobs:
- name: Download and unzip test suite
run: |
echo "LATEST_INTEGRATION_TEST_SDK_URL=$(python CI/ci_cd_helper.py fetch-integration-test-sdk-url 0 | xargs)" >> $GITHUB_ENV
wget ${{ env.LATEST_INTEGRATION_TEST_SDK_URL }}
unzip 3MF_Conformance_Test_Suites_v2.0.0.zip -d test_suites
Expand Down Expand Up @@ -676,6 +666,7 @@ jobs:
- name: Download and unzip test suite
run: |
echo "LATEST_INTEGRATION_TEST_SDK_URL=$(python CI/ci_cd_helper.py fetch-integration-test-sdk-url 0 | xargs)" >> $GITHUB_ENV
wget ${{ env.LATEST_INTEGRATION_TEST_SDK_URL }}
unzip 3MF_Conformance_Test_Suites_v2.0.0.zip -d test_suites
Expand Down Expand Up @@ -793,6 +784,7 @@ jobs:
- name: Download and unzip test suite
run: |
echo "LATEST_INTEGRATION_TEST_SDK_URL=$(python CI/ci_cd_helper.py fetch-integration-test-sdk-url 0 | xargs)" >> $GITHUB_ENV
wget ${{ env.LATEST_INTEGRATION_TEST_SDK_URL }}
unzip 3MF_Conformance_Test_Suites_v2.0.0.zip -d test_suites
Expand Down Expand Up @@ -863,6 +855,7 @@ jobs:
- name: Download and unzip test suite
run: |
echo "LATEST_INTEGRATION_TEST_SDK_URL=$(python CI/ci_cd_helper.py fetch-integration-test-sdk-url 0 | xargs)" >> $GITHUB_ENV
wget ${{ env.LATEST_INTEGRATION_TEST_SDK_URL }}
unzip 3MF_Conformance_Test_Suites_v2.0.0.zip -d test_suites
Expand Down

0 comments on commit 42e4130

Please sign in to comment.