Skip to content

Commit

Permalink
Fix Ubuntu actions
Browse files Browse the repository at this point in the history
The Ubuntu GitHub actions started unexpectedly failing. Adding
`python3-setuptools` to the list of installed packages fixes the issue.
  • Loading branch information
banach-space committed Jul 16, 2021
1 parent 4ae9c2f commit 133ed1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/x86-ubuntu-llvm-from-sources-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
ninja
- name: Install lit
run: |
sudo apt-get install python3-setuptools
sudo pip3 install lit
- name: Run MBASub - sanity check
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/x86-ubuntu-llvm-from-sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
ninja clang opt lli not FileCheck
- name: Install lit
run: |
sudo apt-get install python3-setuptools
sudo pip3 install lit
- name: Build HelloWorld
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/x86-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-12 main"
sudo apt-get update
sudo apt-get install -y llvm-12 llvm-12-dev clang-12 llvm-12-tools
sudo apt-get install python3-setuptools
sudo pip3 install lit
- name: Build HelloWorld
run: |
Expand Down

0 comments on commit 133ed1e

Please sign in to comment.