Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderVocke committed Aug 5, 2024
1 parent 6cbecf2 commit a847ef4
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/actions/prepare_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,9 @@ runs:
uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-pc-windows-gnu
- name: Set rust arch (Windows)
if: ${{ inputs.variant == 'windows' }}
shell: wrap-shell {0}
run: |
rustup set default-host x86_64-pc-windows-gnu
- name: Prepare Rust
- name: Prepare Rust (non-Windows)
if: ${{ inputs.variant != 'windows' }}
uses: dtolnay/rust-toolchain@stable

- name: Rust info
if: ${{ inputs.variant == 'windows' }}
shell: wrap-shell {0}
Expand All @@ -38,6 +31,11 @@ runs:
rustc +stable --version --verbose
rustup toolchain list
rustup target list
- name: Set rust arch (Windows)
if: ${{ inputs.variant == 'windows' }}
shell: wrap-shell {0}
run: |
rustup set default-host x86_64-pc-windows-gnu
- name: Install Qt (Windows)
uses: jurplel/install-qt-action@v4
Expand Down

0 comments on commit a847ef4

Please sign in to comment.