Skip to content

Commit

Permalink
collapse tests
Browse files Browse the repository at this point in the history
  • Loading branch information
seshubaws committed May 9, 2024
1 parent 2eb4fae commit 8b4f0a7
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,26 @@ jobs:
- name: Build
run: make compile-with-docker-all
- name: Run Integ Tests
run: make tests-with-docker
- name: Run Integ Tests x86
uses: actions/setup-python@v5
with:
python-version: '3.11'
run: make integ-tests-with-docker-x86-64
- name: Run Integ Tests arm64
uses: actions/setup-python@v5
with:
python-version: '3.11'
run: make integ-tests-with-docker-arm64
- name: Run Integ Tests Old
uses: actions/setup-python@v5
with:
python-version: '3.11'
run: make integ-tests-with-docker-old
run: |
make tests-with-docker
make integ-tests-with-docker-x86-64
make integ-tests-with-docker-arm64
make integ-tests-with-docker-old
# - name: Run Integ Tests x86
# uses: actions/setup-python@v5
# with:
# python-version: '3.11'
# run: make integ-tests-with-docker-x86-64
# - name: Run Integ Tests arm64
# uses: actions/setup-python@v5
# with:
# python-version: '3.11'
# run: make integ-tests-with-docker-arm64
# - name: Run Integ Tests Old
# uses: actions/setup-python@v5
# with:
# python-version: '3.11'
# run: make integ-tests-with-docker-old
- name: Release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit 8b4f0a7

Please sign in to comment.