Skip to content

Commit

Permalink
Use clang to build llvm, pin Ubuntu version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanlippuner committed Sep 10, 2023
1 parent a3d7d8a commit 6289d1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/build-llvm.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/bin/bash
set -e

# Install clang because building with gcc 11.4 seems to be broken
sudo apt-get install clang

mkdir -p circt/llvm/build
cd circt/llvm/build
cmake ../llvm \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: CI
jobs:
lints:
name: Lints
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -32,7 +32,7 @@ jobs:

check:
name: Checks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand Down

0 comments on commit 6289d1f

Please sign in to comment.