Skip to content

Commit 050a1c3

Browse files
committed
Try GHA build fixes
1 parent 622e5bd commit 050a1c3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/build-dev-mac-x64.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
- run: npm install --production --ignore-scripts
1515
- run: npm install --production
1616
working-directory: nexe
17-
- run: pip install pipes
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.11'
1820
- run: node build
1921
working-directory: nexe
2022
- run: nexe/parpar --version

.github/workflows/build-dev-win64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- run: npm install --production
2121
working-directory: nexe
2222
# diagnose weird execution failure
23-
- run: C:\Program Files\Git\usr\bin\sed -i "s/child_process_1\.spawn/this.log.step('Executing ' + command + ' ' + args); \0/" node_modules/nexe/lib/compiler.js
23+
- run: "C:\Program Files\Git\usr\bin\sed" -i "s/child_process_1\.spawn/this.log.step('Executing ' + command + ' ' + args); \0/" node_modules/nexe/lib/compiler.js
2424
working-directory: nexe
2525
- run: node build
2626
working-directory: nexe

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,9 @@ jobs:
225225
- run: npm install --production --ignore-scripts
226226
- run: npm install --production
227227
working-directory: nexe
228-
- run: pip install pipes
228+
- uses: actions/setup-python@v5
229+
with:
230+
python-version: '3.11'
229231
- run: node build
230232
working-directory: nexe
231233
- run: nexe/parpar --version

0 commit comments

Comments
 (0)