Skip to content

Commit

Permalink
chore(release) ensure Python 3.8+ is used
Browse files Browse the repository at this point in the history
Fixing V8 build issues, see NVIDIA/DeepLearningExamples#1016
  • Loading branch information
thibaultcha committed Oct 25, 2023
1 parent 21732b1 commit 00ee7bc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ jobs:
password: ${{ secrets.TOKEN_GITHUB }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build binary
run: ./util/release.sh ${{ needs.setup.outputs.release_name }} --bin
env:
Expand Down Expand Up @@ -281,6 +284,9 @@ jobs:
password: ${{ secrets.TOKEN_GITHUB }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build binary
run: ./util/release.sh ${{ needs.setup.outputs.release_name }} --bin
env:
Expand Down Expand Up @@ -312,6 +318,24 @@ jobs:
password: ${{ secrets.TOKEN_GITHUB }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: echo $pythonLocation
- run: |
echo $PATH
python --version
which python
- run: |
echo $PATH
python --version
which python
shell: bash {0}
- run: |
echo $PATH
python --version
which python
shell: bash -l {0}
- name: Build binary
run: ./util/release.sh ${{ needs.setup.outputs.release_name }} --bin
env:
Expand Down

0 comments on commit 00ee7bc

Please sign in to comment.