-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These names always contain less information than the original call. This change makes debugging workflows easier.
- Loading branch information
1 parent
e9c3e4b
commit a864add
Showing
3 changed files
with
27 additions
and
39 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 |
---|---|---|
|
@@ -12,11 +12,9 @@ jobs: | |
- { os: windows-latest, target: x86_64-pc-windows-gnu } | ||
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu } | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: "Setup Rust" | ||
uses: actions-rust-lang/[email protected] | ||
- uses: actions-rust-lang/[email protected] | ||
with: | ||
components: rustfmt, clippy | ||
target: ${{ matrix.type.target }} | ||
|
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 |
---|---|---|
|
@@ -14,20 +14,16 @@ jobs: | |
runs-on: windows-latest | ||
|
||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: "Setup Rust" | ||
uses: actions-rust-lang/[email protected] | ||
- uses: actions-rust-lang/[email protected] | ||
with: | ||
target: x86_64-pc-windows-gnu | ||
|
||
- name: "Build Robotmk Windows" | ||
- run: cargo build --target=x86_64-pc-windows-gnu --release | ||
working-directory: ${{ github.workspace }}/v2/robotmk/ | ||
run: cargo build --target=x86_64-pc-windows-gnu --release | ||
|
||
- name: "Upload Artifact" | ||
uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
path: | | ||
${{ github.workspace }}/v2/robotmk/target/x86_64-pc-windows-gnu/release/robotmk.exe | ||
|