Skip to content

Commit deb0921

Browse files
committed
github: Use new xtask commands in CI
1 parent 0f0b41a commit deb0921

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: sudo apt-get install -y --no-install-recommends binaryen
4646
#run: cargo install --debug cargo-make
4747
- name: Build asset
48-
run: cargo xtask build-e2e
48+
run: cargo xtask ci e2e --build
4949
# we copy this manually into the target folder instead of mounting it because
5050
# github actions creates the service first, and if it has a mount that is part
5151
# of your yet unchecked out code, you cannot checkout the code after the mount
@@ -58,4 +58,4 @@ jobs:
5858
with:
5959
args: docker restart ssh
6060
- name: Test
61-
run: cargo xtask e2e-test
61+
run: cargo xtask ci e2e --test

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
EOF
8181
8282
- name: Build release binary
83-
run: cargo xtask ci-build-release ${{ matrix.target }}
83+
run: cargo xtask ci cross ${{ matrix.target }}
8484

8585
# this breaks on aarch64 and this if conditional isn't working for some reason: TODO: investigate
8686
#- name: Strip release binary

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
target
5353
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
5454
- name: Check Format
55-
run: cargo xtask check-format
55+
run: cargo xtask format --check
5656

5757
clippy:
5858
name: Check Clippy Lints

0 commit comments

Comments
 (0)