We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6a3971 commit bcafd6eCopy full SHA for bcafd6e
1 file changed
.github/workflows/main.yml
@@ -30,7 +30,7 @@ jobs:
30
shell: bash
31
32
env:
33
- pdversion: pd-0.56-2
+ PDVERSION: pd-0.56-2
34
35
steps:
36
- uses: actions/checkout@v5
@@ -49,8 +49,8 @@ jobs:
49
run: |
50
echo "local_short_commands=true" >> $GITHUB_ENV
51
git submodule init && git submodule update
52
- curl -L -o pd.zip "http://msp.ucsd.edu/software/${pdversion}.msw.zip"
53
- unzip pd.zip
+ curl -O "http://msp.ucsd.edu/Software/$PDVERSION.msw.zip"
+ unzip "$PDVERSION.msw.zip"
54
55
# ---- build ----
56
- name: configure
@@ -62,7 +62,7 @@ jobs:
62
63
- name: make (windows)
64
if: matrix.os == 'windows-latest'
65
- run: make PDBINPATH="$pdversion/bin" PDINCLUDEDIR="$pdversion/src" CFLAGS=-march=x86-64
+ run: make PDBINPATH="$PDVERSION/bin" PDINCLUDEDIR="$PDVERSION/src" CFLAGS=-march=x86-64
66
67
# ---- package ----
68
- name: package (unix)
0 commit comments