Skip to content

Commit

Permalink
fix(release): Install clang/mold in CI workflows so release artifacts…
Browse files Browse the repository at this point in the history
… build
  • Loading branch information
alerque committed Mar 23, 2024
1 parent 0c7a433 commit 9764f4c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
git fetch --prune --tags ||:
- name: Setup system dependencies
run: |
sudo apt-get install autoconf-archive
sudo apt-get install autoconf-archive clang mold
- name: Configure
run: |
./bootstrap.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4
- name: Setup system dependencies
run: |
sudo apt-get install autoconf-archive
sudo apt-get install autoconf-archive clang mold
- name: Configure
run: |
echo "VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup system dependencies
run: |
sudo apt-get install clang mold
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- name: Fetch tags
run: |
git fetch --prune --tags ||:
- name: Setup system dependencies
run: |
sudo apt-get install clang mold
- name: Install Rust
uses: actions-rs/toolchain@v1
- name: Cache Rust
Expand Down

0 comments on commit 9764f4c

Please sign in to comment.