Skip to content

Commit

Permalink
--break-system-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Sep 24, 2024
1 parent f218618 commit 64cffbb
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/check-vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
with:
repository: nss-dev/nspr
path: nspr
- run: echo "gyp-next>=0.18.1" > req.txt

- if: matrix.os == 'freebsd'
uses: vmactions/freebsd-vm@d7b8fcc7711aa41ad45e8d9b737cf90f035a7e3d
Expand All @@ -48,7 +47,8 @@ jobs:
prepare: |
pkg install -y rust bash ninja python311 py311-pip
cd /bin && ln -s $(which python3.11) python
python -m pip install -r req.txt
echo "gyp-next>=0.18.1" > req.txt
python -m pip install -r req.txt --break-system-packages
run: |
cargo check --all-targets --features ci
RUST_LOG=trace cargo test --features ci --no-fail-fast
Expand All @@ -62,7 +62,8 @@ jobs:
prepare: |
pkg_add rust bash ninja py3-pip
cd /bin && ln -s $(which python3) python
python -m pip install -r req.txt
echo "gyp-next>=0.18.1" > req.txt
python -m pip install -r req.txt --break-system-packages
run: |
cargo check --all-targets --features ci
RUST_LOG=trace cargo test --features ci --no-fail-fast
Expand All @@ -76,7 +77,8 @@ jobs:
prepare: |
/usr/sbin/pkg_add rust bash ninja python312 py312-pip
cd /bin && ln -s $(which python3.12) python
python -m pip install -r req.txt
echo "gyp-next>=0.18.1" > req.txt
python -m pip install -r req.txt --break-system-packages
run: |
cargo check --all-targets --features ci
RUST_LOG=trace cargo test --features ci --no-fail-fast
Expand All @@ -90,8 +92,9 @@ jobs:
copyback: false
prepare: |
pkg install cargo bash ninja python-39 pip-39
cd /bin && ln -s $(which python3) python
python -m pip install -r req.txt
# cd /bin && ln -s $(which python3) python
echo "gyp-next>=0.18.1" > req.txt
python -m pip install -r req.txt --break-system-packages
run: |
cargo check --all-targets --features ci
RUST_LOG=trace cargo test --features ci --no-fail-fast

0 comments on commit 64cffbb

Please sign in to comment.