Skip to content

Commit

Permalink
formatting, pass env vars into VM
Browse files Browse the repository at this point in the history
  • Loading branch information
bjia56 authored May 5, 2024
1 parent 63f1fe9 commit 8f266e8
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,13 +298,15 @@ jobs:
runs-on: ubuntu-latest
name: FreeBSD ${{ inputs.python_version }} ${{ matrix.arch }}
steps:
- uses: actions/checkout@v4
- name: Build in FreeBSD
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y cmake
- name: Checkout
uses: actions/checkout@v4

run: |
./scripts/build_freebsd.sh x86_64 ${{ inputs.python_version }}
- name: Build in VM
uses: vmactions/freebsd-vm@v1
with:
envs: 'RUN_TESTS DEBUG_CI VERBOSE_CI PORTABLE_PYTHON_BUILDSYSTEM_BRANCH'
usesh: true
prepare: |
pkg install -y cmake
run: |
./scripts/build_freebsd.sh x86_64 ${{ inputs.python_version }}

0 comments on commit 8f266e8

Please sign in to comment.