Skip to content

Commit

Permalink
Add mold to CI deps to prepare for us linking with mold. Prep for fas…
Browse files Browse the repository at this point in the history
…ter local+CI compile times (#191)
  • Loading branch information
varoonp123 authored May 22, 2024
1 parent 8a3f5c5 commit 45cb92c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install bevy deps
run: |
set -euxo pipefail
sudo apt update && sudo apt upgrade && sudo apt install -y lld g++ pkg-config libx11-dev libasound2-dev libudev-dev
sudo apt update && sudo apt upgrade && sudo apt install -y lld mold g++ pkg-config libx11-dev libasound2-dev libudev-dev
- name: Cache deps
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
set -euxo pipefail
sudo apt update && sudo apt upgrade && sudo apt install -y lld g++ pkg-config libx11-dev libasound2-dev libudev-dev
sudo apt update && sudo apt upgrade && sudo apt install -y lld mold g++ pkg-config libx11-dev libasound2-dev libudev-dev
shell: bash
- name: Cache deps
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if: matrix.config.os == 'ubuntu-latest'
run: |
set -euxo pipefail
sudo apt update && sudo apt upgrade && sudo apt install -y lld g++ pkg-config libx11-dev libasound2-dev libudev-dev
sudo apt update && sudo apt upgrade && sudo apt install -y lld mold g++ pkg-config libx11-dev libasound2-dev libudev-dev
- name: 🦀 Setup Rust
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Install bevy deps and binaryen for wasm optimization
run: |
set -euxo pipefail
sudo apt update && sudo apt upgrade && sudo apt install -y lld g++ pkg-config libx11-dev libasound2-dev libudev-dev binaryen
sudo apt update && sudo apt upgrade && sudo apt install -y lld mold g++ pkg-config libx11-dev libasound2-dev libudev-dev binaryen
- name: Build wasm assets
run: ./build_wasm.sh
- name: Publish deployment to netlify website
Expand Down

0 comments on commit 45cb92c

Please sign in to comment.