Skip to content

Commit

Permalink
Fix cargo dinghy attempting to run objc2-proc-macro tests
Browse files Browse the repository at this point in the history
These are compiled for the host system, and hence fail when trying to execute them in the simulator

See sonos/dinghy#144
  • Loading branch information
madsmtm committed Jan 19, 2022
1 parent 4243228 commit 28e605c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ jobs:
~/extern/lib
~/extern/include
~/extern/sdk
# Change this key if we start caching more things
key: ${{ matrix.name }}-extern-v1
# Change this key if we start caching something different
key: ${{ matrix.name }}-extern-v3

- name: Setup environment
# These add to PATH-like variables, so they can always be set
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:

- name: Install Cargo Dinghy
if: matrix.dinghy && steps.extern-cache.outputs.cache-hit != 'true'
run: cargo install cargo-dinghy --version=^0.4 --root=$HOME/extern --target=x86_64-apple-darwin
run: cargo install cargo-dinghy --version=^0.4.68 --root=$HOME/extern --target=x86_64-apple-darwin

- name: Run Cargo Dinghy
if: matrix.dinghy
Expand Down

0 comments on commit 28e605c

Please sign in to comment.