Skip to content

Commit 3dd70e1

Browse files
committed
actions: remove all template injection
1 parent b146579 commit 3dd70e1

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/buildwheel.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
# This is probably something to do with \ vs / in paths...
102102
- if: ${{ startsWith( matrix.os , 'windows' ) }}
103103
run: |
104-
$pkgConfigPath = "${{ github.workspace }}/.local/lib/pkgconfig"
104+
$pkgConfigPath = "$env:GITHUB_WORKSPACE/.local/lib/pkgconfig"
105105
$pkgConfigPath = $pkgConfigPath.Replace('\', '/')
106106
echo "PKG_CONFIG_PATH=$pkgConfigPath" >> $env:GITHUB_ENV
107107
@@ -225,7 +225,7 @@ jobs:
225225
node-version: '22'
226226

227227
- run: pip install pyodide-build
228-
- run: pyodide xbuildenv install "${{ env.PYODIDE_VERSION }}"
228+
- run: pyodide xbuildenv install "$PYODIDE_VERSION"
229229

230230
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
231231
with:
@@ -315,7 +315,9 @@ jobs:
315315
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
316316
with:
317317
python-version: '3.13'
318-
- run: bin/install_flint_ubuntu.sh ${{ matrix.flint-tag }}
318+
- env:
319+
FLINT_TAG: ${{ matrix.flint-tag }}
320+
run: bin/install_flint_ubuntu.sh "$FLINT_TAG"
319321
- run: pip install .
320322
- run: python -m flint.test --verbose
321323

@@ -402,7 +404,9 @@ jobs:
402404
- run: sudo apt-get install libflint-dev
403405
- run: pip install .
404406
- run: pip install pytest pytest-xdist hypothesis
405-
- run: pip install sympy==${{ matrix.sympy-version }}
407+
- env:
408+
SYMPY_VERSION: ${{ matrix.sympy-version }}
409+
run: pip install "sympy==$SYMPY_VERSION"
406410
- run: python -c 'import sympy; sympy.test(parallel=True)'
407411

408412
# Run SymPy master branch agains python-flint main

0 commit comments

Comments
 (0)