Skip to content

Commit

Permalink
Merge pull request #897 from ApexAI/iox-#889-fix-clang-experimental-b…
Browse files Browse the repository at this point in the history
…uild

iox-#889 Fix clang install script for CI
  • Loading branch information
dkroenke authored Aug 4, 2021
2 parents 829817c + d464b20 commit 2685910
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/experimental_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,7 @@ jobs:
- name: Install latest clang stable release
shell: bash
run: |
REPO_NAME="deb http://apt.llvm.org/focal/ llvm-toolchain-focal main"
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "${REPO_NAME}"
sudo apt-get update
sudo apt-get install -y clang
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -36,8 +32,8 @@ jobs:
continue-on-error: true
shell: bash
env:
CC: clang
CXX: clang++
CC: clang-12
CXX: clang++-12
run: |
echo $(clang --version)
sudo $GITHUB_WORKSPACE/tools/add_test_users.sh
Expand Down

0 comments on commit 2685910

Please sign in to comment.