Skip to content

Commit

Permalink
chore: added LLVM dependency on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
francis2tm committed Feb 1, 2024
1 parent 592712e commit 9164ecc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,21 @@ jobs:
version: 8
run_install: false

# setup dependencies that Nix can't handle (https://github.com/tauri-apps/tauri/issues/8535)
# setup dependencies
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y build-essential curl wget file libssl-dev libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev patchelf
# install llvm (for llvm-copy) on macos only
- name: Install LLVM
if: matrix.platform == 'macos-latest'
run: |
brew update
brew install llvm@17
echo "$(brew --prefix llvm@17)/bin" >> $GITHUB_PATH
- name: Install GUI frontend dependencies
run: cd edgen && pnpm install # change this to npm or pnpm depending on which one you use

Expand Down

0 comments on commit 9164ecc

Please sign in to comment.