Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce vmactions verbosity #114

Merged
merged 14 commits into from
Dec 12, 2024
Prev Previous commit
Next Next commit
Use gh envs
bjia56 authored Dec 11, 2024
commit f11b86640df5562dcdb10d1b84f048a2c2f1152d
16 changes: 8 additions & 8 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
@@ -352,10 +352,10 @@ jobs:
shell: freebsd {0}
run: |
cd ${{ github.workspace }}
export RUN_TESTS="${RUN_TESTS}"
export DEBUG_CI="${DEBUG_CI}"
export VERBOSE_CI="${VERBOSE_CI}"
export PORTABLE_PYTHON_BUILDSYSTEM_BRANCH="${PORTABLE_PYTHON_BUILDSYSTEM_BRANCH}"
export RUN_TESTS="${{ env.RUN_TESTS }}"
export DEBUG_CI="${{ env.DEBUG_CI }}"
export VERBOSE_CI="${{ env.VERBOSE_CI }}"
export PORTABLE_PYTHON_BUILDSYSTEM_BRANCH="${{ env.PORTABLE_PYTHON_BUILDSYSTEM_BRANCH }}"
export PLATFORM="freebsd${{ matrix.release }}"
bash ./scripts/build_freebsd.sh x86_64 ${{ inputs.python_version }} ${{ matrix.distribution }}

@@ -469,10 +469,10 @@ jobs:
shell: solaris {0}
run: |
cd ${{ github.workspace }}
export RUN_TESTS="${RUN_TESTS}"
export DEBUG_CI="${DEBUG_CI}"
export VERBOSE_CI="${VERBOSE_CI}"
export PORTABLE_PYTHON_BUILDSYSTEM_BRANCH="${PORTABLE_PYTHON_BUILDSYSTEM_BRANCH}"
export RUN_TESTS="${{ env.RUN_TESTS }}"
export DEBUG_CI="${{ env.DEBUG_CI }}"
export VERBOSE_CI="${{ env.VERBOSE_CI }}"
export PORTABLE_PYTHON_BUILDSYSTEM_BRANCH="${{ env.PORTABLE_PYTHON_BUILDSYSTEM_BRANCH }}"
export PLATFORM="solaris${{ matrix.release }}"
bash ./scripts/build_solaris.sh x86_64 ${{ inputs.python_version }} ${{ matrix.distribution }}