Skip to content

Commit

Permalink
fix windows vars
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 18, 2023
1 parent cc30f49 commit 38f353d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ jobs:
run: git submodule init && git submodule update
- name: get pd
run: |
curl -O "http://msp.ucsd.edu/Software/$PDVERSION.msw.zip"
unzip "$PDVERSION.msw.zip"
curl -O "http://msp.ucsd.edu/Software/$env:PDVERSION.msw.zip"
unzip "$env:PDVERSION.msw.zip"
- name: configure
run: ./config.sh
- name: make
run : make pdbinpath="$PDVERSION/bin" PDINCLUDEDIR="$PDVERSION/src" CFLAGS=-march=x86-64 -Iinclude
run : make pdbinpath="$env:PDVERSION/bin" PDINCLUDEDIR="$env:PDVERSION/src" CFLAGS=-march=x86-64 -Iinclude
- name: install lib
run: |
make install PDLIBDIR=.
Expand Down

0 comments on commit 38f353d

Please sign in to comment.