@@ -263,7 +263,7 @@ jobs:
263
263
run : echo "Started CI build (Eclipse eMoflon macOS user)."
264
264
- name : Install dependencies
265
265
run : |
266
- brew install p7zip coreutils grep wget curl
266
+ brew install p7zip coreutils grep wget curl gsed
267
267
- name : Check out repository code
268
268
uses : actions/checkout@v4
269
269
- name : Download splash image
@@ -283,7 +283,9 @@ jobs:
283
283
with :
284
284
name : com.seeq.eclipse.importprojects.jar
285
285
- name : Run build script
286
- 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
287
289
- name : Fix permissions
288
290
run : sudo xattr -cr ./eclipse/Eclipse.app
289
291
- name : Upload artifact
@@ -301,7 +303,7 @@ jobs:
301
303
run : echo "Started CI build (Eclipse eMoflon macOS dev)."
302
304
- name : Install dependencies
303
305
run : |
304
- brew install p7zip coreutils grep wget curl
306
+ brew install p7zip coreutils grep wget curl gsed
305
307
- name : Check out repository code
306
308
uses : actions/checkout@v4
307
309
- name : Download splash image
@@ -321,7 +323,9 @@ jobs:
321
323
with :
322
324
name : com.seeq.eclipse.importprojects.jar
323
325
- name : Run build script
324
- 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
325
329
- name : Fix permissions
326
330
run : sudo xattr -cr ./eclipse/Eclipse.app
327
331
- name : Upload artifact
@@ -339,7 +343,7 @@ jobs:
339
343
run : echo "Started CI build (Eclipse eMoflon macOS dev HiPE)."
340
344
- name : Install dependencies
341
345
run : |
342
- brew install p7zip coreutils grep wget curl
346
+ brew install p7zip coreutils grep wget curl gsed
343
347
- name : Check out repository code
344
348
uses : actions/checkout@v4
345
349
- name : Download splash image
@@ -359,7 +363,9 @@ jobs:
359
363
with :
360
364
name : com.seeq.eclipse.importprojects.jar
361
365
- name : Run build script
362
- 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
363
369
- name : Fix permissions
364
370
run : sudo xattr -cr ./eclipse/Eclipse.app
365
371
- name : Upload artifact
@@ -377,7 +383,7 @@ jobs:
377
383
run : echo "Started CI build (Eclipse eMoflon macOS user)."
378
384
- name : Install dependencies
379
385
run : |
380
- brew install p7zip coreutils grep wget curl
386
+ brew install p7zip coreutils grep wget curl gsed
381
387
- name : Check out repository code
382
388
uses : actions/checkout@v4
383
389
- name : Download splash image
@@ -397,7 +403,9 @@ jobs:
397
403
with :
398
404
name : com.seeq.eclipse.importprojects.jar
399
405
- name : Run build script
400
- 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
401
409
- name : Fix permissions
402
410
run : sudo xattr -cr ./eclipse/Eclipse.app
403
411
- name : Upload artifact
@@ -415,7 +423,7 @@ jobs:
415
423
run : echo "Started CI build (Eclipse eMoflon macOS dev)."
416
424
- name : Install dependencies
417
425
run : |
418
- brew install p7zip coreutils grep wget curl
426
+ brew install p7zip coreutils grep wget curl gsed
419
427
- name : Check out repository code
420
428
uses : actions/checkout@v4
421
429
- name : Download splash image
@@ -435,7 +443,9 @@ jobs:
435
443
with :
436
444
name : com.seeq.eclipse.importprojects.jar
437
445
- name : Run build script
438
- 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
439
449
- name : Fix permissions
440
450
run : sudo xattr -cr ./eclipse/Eclipse.app
441
451
- name : Upload artifact
@@ -453,7 +463,7 @@ jobs:
453
463
run : echo "Started CI build (Eclipse eMoflon macOS dev HiPE)."
454
464
- name : Install dependencies
455
465
run : |
456
- brew install p7zip coreutils grep wget curl
466
+ brew install p7zip coreutils grep wget curl gsed
457
467
- name : Check out repository code
458
468
uses : actions/checkout@v4
459
469
- name : Download splash image
@@ -473,7 +483,9 @@ jobs:
473
483
with :
474
484
name : com.seeq.eclipse.importprojects.jar
475
485
- name : Run build script
476
- 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
477
489
- name : Fix permissions
478
490
run : sudo xattr -cr ./eclipse/Eclipse.app
479
491
- name : Upload artifact
0 commit comments