Skip to content

Commit

Permalink
python
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Sep 24, 2024
1 parent e3ec66a commit 0e144a7
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/check-vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ on:
paths-ignore: ["*.md", "*.png", "*.svg", "LICENSE-*"]
merge_group:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
Expand Down Expand Up @@ -44,7 +41,9 @@ jobs:
usesh: true
copyback: false
prepare: |
pkg install -y curl bash ninja python gyp-next
pkg install -y curl bash ninja python3
echo "gyp-next>=0.18.1" > req.txt
python3 -m pip install -r req.txt
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- --profile minimal --default-toolchain stable
run: |
Expand All @@ -59,7 +58,9 @@ jobs:
usesh: true
copyback: false
prepare: |
pkg_add curl bash ninja python-3.10.14 gyp
pkg_add curl bash ninja python-3.10.14
echo "gyp-next>=0.18.1" > req.txt
python3 -m pip install -r req.txt
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- --profile minimal --default-toolchain stable
run: |
Expand All @@ -74,7 +75,9 @@ jobs:
usesh: true
copyback: false
prepare: |
/usr/sbin/pkg_add curl bash ninja python3 gyp-next
/usr/sbin/pkg_add curl bash ninja python312
echo "gyp-next>=0.18.1" > req.txt
python3 -m pip install -r req.txt
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- --profile minimal --default-toolchain stable
run: |
Expand All @@ -90,7 +93,9 @@ jobs:
usesh: true
copyback: false
prepare: |
pkg install curl bash ninja python3 gyp-next
pkg install curl bash ninja python3
echo "gyp-next>=0.18.1" > req.txt
python3 -m pip install -r req.txt
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- --profile minimal --default-toolchain stable
run: |
Expand Down

0 comments on commit 0e144a7

Please sign in to comment.