Skip to content

Commit fbb9fe3

Browse files
committed
Fixes PATH
1 parent 13f63e4 commit fbb9fe3

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

.github/workflows/ci.yml

+18-12
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ jobs:
264264
- name: Install dependencies
265265
run: |
266266
brew install p7zip coreutils grep wget curl gsed
267-
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
268267
- name: Check out repository code
269268
uses: actions/checkout@v4
270269
- name: Download splash image
@@ -284,7 +283,9 @@ jobs:
284283
with:
285284
name: com.seeq.eclipse.importprojects.jar
286285
- name: Run build script
287-
run: chmod +x build.sh && ./build.sh -m user -o macos
286+
run: |
287+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
288+
chmod +x build.sh && ./build.sh -m user -o macos
288289
- name: Fix permissions
289290
run: sudo xattr -cr ./eclipse/Eclipse.app
290291
- name: Upload artifact
@@ -303,7 +304,6 @@ jobs:
303304
- name: Install dependencies
304305
run: |
305306
brew install p7zip coreutils grep wget curl gsed
306-
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
307307
- name: Check out repository code
308308
uses: actions/checkout@v4
309309
- name: Download splash image
@@ -323,7 +323,9 @@ jobs:
323323
with:
324324
name: com.seeq.eclipse.importprojects.jar
325325
- name: Run build script
326-
run: chmod +x build.sh && ./build.sh -m dev -o macos
326+
run: |
327+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
328+
chmod +x build.sh && ./build.sh -m dev -o macos
327329
- name: Fix permissions
328330
run: sudo xattr -cr ./eclipse/Eclipse.app
329331
- name: Upload artifact
@@ -342,7 +344,6 @@ jobs:
342344
- name: Install dependencies
343345
run: |
344346
brew install p7zip coreutils grep wget curl gsed
345-
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
346347
- name: Check out repository code
347348
uses: actions/checkout@v4
348349
- name: Download splash image
@@ -362,7 +363,9 @@ jobs:
362363
with:
363364
name: com.seeq.eclipse.importprojects.jar
364365
- name: Run build script
365-
run: chmod +x build.sh && ./build.sh -m hipedev -o macos
366+
run: |
367+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
368+
chmod +x build.sh && ./build.sh -m hipedev -o macos
366369
- name: Fix permissions
367370
run: sudo xattr -cr ./eclipse/Eclipse.app
368371
- name: Upload artifact
@@ -381,7 +384,6 @@ jobs:
381384
- name: Install dependencies
382385
run: |
383386
brew install p7zip coreutils grep wget curl gsed
384-
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
385387
- name: Check out repository code
386388
uses: actions/checkout@v4
387389
- name: Download splash image
@@ -401,7 +403,9 @@ jobs:
401403
with:
402404
name: com.seeq.eclipse.importprojects.jar
403405
- name: Run build script
404-
run: chmod +x build.sh && ./build.sh -m user -o macosarm
406+
run: |
407+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
408+
chmod +x build.sh && ./build.sh -m user -o macosarm
405409
- name: Fix permissions
406410
run: sudo xattr -cr ./eclipse/Eclipse.app
407411
- name: Upload artifact
@@ -420,7 +424,6 @@ jobs:
420424
- name: Install dependencies
421425
run: |
422426
brew install p7zip coreutils grep wget curl gsed
423-
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
424427
- name: Check out repository code
425428
uses: actions/checkout@v4
426429
- name: Download splash image
@@ -440,7 +443,9 @@ jobs:
440443
with:
441444
name: com.seeq.eclipse.importprojects.jar
442445
- name: Run build script
443-
run: chmod +x build.sh && ./build.sh -m dev -o macosarm
446+
run: |
447+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
448+
chmod +x build.sh && ./build.sh -m dev -o macosarm
444449
- name: Fix permissions
445450
run: sudo xattr -cr ./eclipse/Eclipse.app
446451
- name: Upload artifact
@@ -459,7 +464,6 @@ jobs:
459464
- name: Install dependencies
460465
run: |
461466
brew install p7zip coreutils grep wget curl gsed
462-
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
463467
- name: Check out repository code
464468
uses: actions/checkout@v4
465469
- name: Download splash image
@@ -479,7 +483,9 @@ jobs:
479483
with:
480484
name: com.seeq.eclipse.importprojects.jar
481485
- name: Run build script
482-
run: chmod +x build.sh && ./build.sh -m hipedev -o macosarm
486+
run: |
487+
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
488+
chmod +x build.sh && ./build.sh -m hipedev -o macosarm
483489
- name: Fix permissions
484490
run: sudo xattr -cr ./eclipse/Eclipse.app
485491
- name: Upload artifact

0 commit comments

Comments
 (0)