Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Nov 7, 2023
1 parent c057976 commit 52003a2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup environment
run: ./setup
- name: "Setup Rust"
uses: actions-rust-lang/[email protected]
with:
components: rustfmt, clippy
target: x86_64-pc-windows-gnu

- name: ${{ matrix.step }}
env:
STEP: ${{ matrix.step }}
run: ./ci "${STEP}"
run: ./ci ${{ matrix.step }}

- name: "Build Robotmk Windows"
working-directory: ${{ github.workspace }}/v2/robotmk/
run: cargo build --target=x86_64-pc-windows-gnu --release
5 changes: 0 additions & 5 deletions setup
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@
set -e

main() {
setup_rust
git config core.hooksPath .githooks
}

setup_rust() {
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s - -y
}

main

0 comments on commit 52003a2

Please sign in to comment.