-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use taiki-e/install-action for installing some tools in CI
- Loading branch information
Showing
4 changed files
with
16 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,9 @@ jobs: | |
version: 0.13.0 | ||
|
||
- name: Install cargo-zigbuild | ||
run: curl -L https://github.com/rust-cross/cargo-zigbuild/releases/download/v0.19.1/cargo-zigbuild-v0.19.1.x86_64-unknown-linux-musl.tar.gz | tar -z -x -C /usr/local/bin | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-zigbuild | ||
|
||
- name: Install frontend Node | ||
uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -238,7 +238,9 @@ jobs: | |
rustup default stable | ||
- name: Install nextest | ||
uses: taiki-e/install-action@nextest | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-nextest | ||
|
||
- name: Setup sccache | ||
uses: mozilla-actions/[email protected] | ||
|
@@ -288,7 +290,9 @@ jobs: | |
|
||
- run: mkdir -p ~/.cargo/bin | ||
- name: Install nextest | ||
uses: taiki-e/install-action@nextest | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-nextest | ||
|
||
- name: Install Node | ||
uses: actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -141,11 +141,10 @@ jobs: | |
- name: Setup sccache | ||
uses: mozilla-actions/[email protected] | ||
|
||
- name: Download grcov | ||
run: | | ||
mkdir -p "${HOME}/.local/bin" | ||
curl -sL https://github.com/mozilla/grcov/releases/download/v0.8.19/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - -C "${HOME}/.local/bin" | ||
echo "$HOME/.local/bin" >> $GITHUB_PATH | ||
- name: Install grcov | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: grcov | ||
|
||
- name: Run test suite with profiling enabled | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -30,10 +30,10 @@ jobs: | |
- name: Setup sccache | ||
uses: mozilla-actions/[email protected] | ||
|
||
- name: Setup mdBook | ||
uses: peaceiris/actions-mdbook@v2.0.0 | ||
- name: Install mdbook | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
mdbook-version: '0.4.37' | ||
tool: mdbook | ||
|
||
- name: Install Node | ||
uses: actions/[email protected] | ||
|