Skip to content

Commit

Permalink
Merge pull request #43 from pd-rs/ci/update
Browse files Browse the repository at this point in the history
CI: enable integration tests on windows, upd deps
  • Loading branch information
boozook authored Jul 15, 2023
2 parents 840dd65 + c391479 commit 3472baf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# checkout needed for changelog only
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ steps.version.outputs.value }}
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
echo "::set-output name=arch::$(uname -m)"
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: rust toolchain
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: install rust toolchain
uses: actions-rs/toolchain@v1
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Tests
run: cargo test --verbose
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -62,14 +62,13 @@ jobs:
os:
- macos-latest
- ubuntu-latest
# TODO: enable windows and fix the crank
# - windows-latest
- windows-latest
sdk:
- latest

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -89,7 +88,7 @@ jobs:
- name: Checkout Crankstart
uses: actions/checkout@v3
with:
repository: rtsuk/crankstart
repository: pd-rs/crankstart
path: crankstart

- name: Install Playdate SDK
Expand All @@ -116,3 +115,6 @@ jobs:
# life game
crank build --release --example=life
crank build --release --example=life --device
# TODO: check existence of produced packages

0 comments on commit 3472baf

Please sign in to comment.