Skip to content

Commit

Permalink
install python for blst nightly checks before building instead of aft…
Browse files Browse the repository at this point in the history
…er (#471)

* install python for blst nightly checks before building instead of after

* Update build-blst-nightly.yml
  • Loading branch information
altendky authored Oct 22, 2024
1 parent 6e40e3b commit 9ac8f3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-blst-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Python
uses: chia-network/actions/setup-python@main
with:
python-version: '3.10'

- name: Ubuntu build C++ and test blst at origin/main
if: startsWith(matrix.os, 'ubuntu')
# blst is still using master instead of main
Expand Down Expand Up @@ -59,11 +64,6 @@ jobs:
echo "Running runtest"
build\src\Debug\runtest.exe
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Test pure python implementation
run: |
python python-impl/impl-test.py
Expand Down

0 comments on commit 9ac8f3d

Please sign in to comment.