Skip to content

Commit

Permalink
ci: install cross before doing cross compilation build, fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fbozic committed Jun 19, 2024
1 parent 1626403 commit 8488169
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ jobs:
- name: Setup rust cache
uses: Swatinem/rust-cache@v2

- name: Install cross
- name: Run cargo check
run: cargo check --release
3 changes: 3 additions & 0 deletions .github/workflows/release-chat-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- name: Setup rust cache
uses: Swatinem/rust-cache@v2

- name: Install cross
run: cargo install cross --version 0.2.5

- name: Build for Intel Linux
run: cargo build -p chat-example --release --target=x86_64-unknown-linux-gnu

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release-dcutr-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
- name: Setup rust cache
uses: Swatinem/rust-cache@v2

- name: Install cross
run: cargo install cross --version 0.2.5

- name: Build for Intel Linux
run: cargo build -p dcutr-example --release --target=x86_64-unknown-linux-gnu

Expand Down

0 comments on commit 8488169

Please sign in to comment.