Skip to content

Commit

Permalink
ci: Make llvm-readobj-12/13 available as llvm-readobj on Mac/Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 committed Jun 15, 2022
1 parent ef9ccd5 commit 4017930
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,9 @@ jobs:
name: ubuntu-latest-x
- run: chmod +x ./x

- name: Make llvm-readobj-12 available as llvm-readobj
run: sudo ln -s llvm-readobj-12 /usr/bin/llvm-readobj

# install rust
- uses: hecrj/setup-rust-action@v1
with:
Expand Down Expand Up @@ -605,8 +608,11 @@ jobs:
- uses: KyleMayes/install-llvm-action@v1
with:
version: 13
- run: sudo mkdir -p /usr/local/bin
- run: sudo ln -s lld-13 /usr/local/bin/lld
- name: Make lld-13 and llvm-readobj-13 available as lld and llvm-readobj
run: |
sudo mkdir -p /usr/local/bin
sudo ln -s lld-13 /usr/local/bin/lld
sudo ln -s llvm-readobj-13 /usr/local/bin/llvm-readobj
# prepare sources
- run: ../x new template
Expand Down

0 comments on commit 4017930

Please sign in to comment.