-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use fork of rustyline instead of patch
- Loading branch information
Showing
8 changed files
with
35 additions
and
2,269 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 |
---|---|---|
|
@@ -38,12 +38,6 @@ jobs: | |
- name: Install cargo-binstall | ||
uses: cargo-bins/[email protected] | ||
|
||
- name: Patch sources | ||
run: | | ||
set -euo pipefail | ||
cargo binstall --no-confirm --force cargo-patch | ||
cargo patch | ||
- name: Build | ||
run: cargo build --release | ||
|
||
|
@@ -72,12 +66,6 @@ jobs: | |
- name: Install cargo-llvm-cov | ||
run: cargo binstall --no-confirm --force cargo-llvm-cov | ||
|
||
- name: Patch sources | ||
run: | | ||
set -euo pipefail | ||
cargo binstall --no-confirm --force cargo-patch | ||
cargo patch | ||
- name: Test | ||
run: | | ||
set -euxo pipefail | ||
|
@@ -147,12 +135,6 @@ jobs: | |
- name: Install cargo-binstall | ||
uses: cargo-bins/[email protected] | ||
|
||
- name: Patch sources | ||
run: | | ||
set -euo pipefail | ||
cargo binstall --no-confirm --force cargo-patch | ||
cargo patch | ||
- name: Format check | ||
run: cargo fmt --check --all | ||
|
||
|
@@ -199,25 +181,12 @@ jobs: | |
- name: Install cargo-binstall | ||
uses: cargo-bins/[email protected] | ||
|
||
- name: Patch sources | ||
run: | | ||
set -euo pipefail | ||
cargo binstall --no-confirm --force cargo-patch | ||
cd pr | ||
cargo patch | ||
cd .. | ||
cd main | ||
cargo patch | ||
cd .. | ||
- name: Performance analysis on PR | ||
run: cargo bench --workspace --exclude brush-root -- --output-format bencher | tee benchmarks.txt | ||
run: cargo bench --workspace -- --output-format bencher | tee benchmarks.txt | ||
working-directory: pr | ||
|
||
- name: Performance analysis on main | ||
run: cargo bench --workspace --exclude brush-root -- --output-format bencher | tee benchmarks.txt | ||
run: cargo bench --workspace -- --output-format bencher | tee benchmarks.txt | ||
working-directory: main | ||
|
||
- name: Compare benchmark results | ||
|
Oops, something went wrong.