Skip to content

Commit 4916134

Browse files
committed
ci: install embacle in all build workflows
1 parent d4c1f4c commit 4916134

4 files changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818

19+
- name: Install embacle
20+
run: |
21+
brew tap dravr-ai/tap
22+
brew install embacle
23+
echo "LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
24+
1925
- name: Clone skills repo
2026
run: |
2127
git clone https://github.com/jfarcand/mirroir-skills.git ../mirroir-skills

.github/workflows/install.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020

21+
- name: Install embacle
22+
run: |
23+
brew tap dravr-ai/tap
24+
brew install embacle
25+
echo "LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
26+
2127
# --- Build ---
2228

2329
- name: Build release binaries

.github/workflows/mcp-compliance.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ jobs:
3737
- name: Checkout code
3838
uses: actions/checkout@v4
3939

40+
- name: Install embacle
41+
run: |
42+
brew tap dravr-ai/tap
43+
brew install embacle
44+
echo "LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
45+
4046
- name: Clone skills repo
4147
run: |
4248
git clone https://github.com/jfarcand/mirroir-skills.git ../mirroir-skills

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
with:
2828
token: ${{ secrets.RELEASE_PAT }}
2929

30+
- name: Install embacle
31+
run: |
32+
brew tap dravr-ai/tap
33+
brew install embacle
34+
echo "LIBRARY_PATH=$(brew --prefix)/lib" >> "$GITHUB_ENV"
35+
3036
- name: Determine current version
3137
id: current
3238
run: |

0 commit comments

Comments
 (0)