Skip to content

Commit

Permalink
Fixes PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Dec 6, 2024
1 parent 13f63e4 commit fbb9fe3
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ jobs:
- name: Install dependencies
run: |
brew install p7zip coreutils grep wget curl gsed
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
- name: Check out repository code
uses: actions/checkout@v4
- name: Download splash image
Expand All @@ -284,7 +283,9 @@ jobs:
with:
name: com.seeq.eclipse.importprojects.jar
- name: Run build script
run: chmod +x build.sh && ./build.sh -m user -o macos
run: |
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
chmod +x build.sh && ./build.sh -m user -o macos
- name: Fix permissions
run: sudo xattr -cr ./eclipse/Eclipse.app
- name: Upload artifact
Expand All @@ -303,7 +304,6 @@ jobs:
- name: Install dependencies
run: |
brew install p7zip coreutils grep wget curl gsed
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
- name: Check out repository code
uses: actions/checkout@v4
- name: Download splash image
Expand All @@ -323,7 +323,9 @@ jobs:
with:
name: com.seeq.eclipse.importprojects.jar
- name: Run build script
run: chmod +x build.sh && ./build.sh -m dev -o macos
run: |
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
chmod +x build.sh && ./build.sh -m dev -o macos
- name: Fix permissions
run: sudo xattr -cr ./eclipse/Eclipse.app
- name: Upload artifact
Expand All @@ -342,7 +344,6 @@ jobs:
- name: Install dependencies
run: |
brew install p7zip coreutils grep wget curl gsed
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
- name: Check out repository code
uses: actions/checkout@v4
- name: Download splash image
Expand All @@ -362,7 +363,9 @@ jobs:
with:
name: com.seeq.eclipse.importprojects.jar
- name: Run build script
run: chmod +x build.sh && ./build.sh -m hipedev -o macos
run: |
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
chmod +x build.sh && ./build.sh -m hipedev -o macos
- name: Fix permissions
run: sudo xattr -cr ./eclipse/Eclipse.app
- name: Upload artifact
Expand All @@ -381,7 +384,6 @@ jobs:
- name: Install dependencies
run: |
brew install p7zip coreutils grep wget curl gsed
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
- name: Check out repository code
uses: actions/checkout@v4
- name: Download splash image
Expand All @@ -401,7 +403,9 @@ jobs:
with:
name: com.seeq.eclipse.importprojects.jar
- name: Run build script
run: chmod +x build.sh && ./build.sh -m user -o macosarm
run: |
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
chmod +x build.sh && ./build.sh -m user -o macosarm
- name: Fix permissions
run: sudo xattr -cr ./eclipse/Eclipse.app
- name: Upload artifact
Expand All @@ -420,7 +424,6 @@ jobs:
- name: Install dependencies
run: |
brew install p7zip coreutils grep wget curl gsed
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
- name: Check out repository code
uses: actions/checkout@v4
- name: Download splash image
Expand All @@ -440,7 +443,9 @@ jobs:
with:
name: com.seeq.eclipse.importprojects.jar
- name: Run build script
run: chmod +x build.sh && ./build.sh -m dev -o macosarm
run: |
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
chmod +x build.sh && ./build.sh -m dev -o macosarm
- name: Fix permissions
run: sudo xattr -cr ./eclipse/Eclipse.app
- name: Upload artifact
Expand All @@ -459,7 +464,6 @@ jobs:
- name: Install dependencies
run: |
brew install p7zip coreutils grep wget curl gsed
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
- name: Check out repository code
uses: actions/checkout@v4
- name: Download splash image
Expand All @@ -479,7 +483,9 @@ jobs:
with:
name: com.seeq.eclipse.importprojects.jar
- name: Run build script
run: chmod +x build.sh && ./build.sh -m hipedev -o macosarm
run: |
export PATH="/opt/homebrew/opt/gnu-sed/libexec/gnubin:$PATH"
chmod +x build.sh && ./build.sh -m hipedev -o macosarm
- name: Fix permissions
run: sudo xattr -cr ./eclipse/Eclipse.app
- name: Upload artifact
Expand Down

0 comments on commit fbb9fe3

Please sign in to comment.