-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: split CI into separate moldy jobs (#1192)
* use [`mold`](https://github.com/rui314/mold) linker for building Rust code * Splits into several parallel jobs * disables one test that was taking ~7 minutes with miri, cutting the miri time down considerably * Add new check for generate fbs/proto files being up to date Shaves ~40% off of CI times
- Loading branch information
Showing
4 changed files
with
99 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: "Setup flatc" | ||
description: "Download and install flatc binary" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Download flatc | ||
id: download-flatc | ||
shell: bash | ||
run: | | ||
wget -O /tmp/flatc.zip https://github.com/google/flatbuffers/releases/download/v24.3.25/Linux.flatc.binary.clang++-15.zip | ||
unzip /tmp/flatc.zip flatc | ||
mv flatc /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters