Skip to content

Commit

Permalink
Fixing CI/CD, upgrade to LLVM 18
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacShelton committed Apr 29, 2024
1 parent aa94f40 commit 009fa27
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/remoteBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,31 +111,32 @@ jobs:
- name: Install LLVM and dependencies (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install llvm@16
brew install llvm@18
brew install zstd
- name: Install LLVM and dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update
sudo apt-get install -y libncurses5
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y llvm-15-dev
sudo apt-get remove -y llvm-13
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install zstd
brew install llvm@18
brew ls -v zstd
- name: Configure (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DADEPT_LINK_LLVM_STATIC=On -B ${{github.workspace}}/build -G Ninja
env:
LLVM_DIR: /opt/homebrew/Cellar/llvm@16/16.0.6_1
LLVM_DIR: /opt/homebrew/Cellar/llvm@18
zstd_DIR: /usr/local/opt/zstd
- name: Configure (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_PREFIX_PATH="/usr/lib/x86_64-linux-gnu" -DADEPT_LINK_LLVM_STATIC=On -B ${{github.workspace}}/build -G Ninja
env:
LLVM_DIR: /home/linuxbrew/.linuxbrew/opt/llvm@18
zstd_DIR: /home/linuxbrew/.linuxbrew/opt/zstd
- name: Build
run: |
Expand Down

0 comments on commit 009fa27

Please sign in to comment.