Skip to content

Commit

Permalink
Setup rust build dependencies for rust projects
Browse files Browse the repository at this point in the history
Setup the rust toolchain when a Cargo.toml is detected

Signed-off-by: Robin Appelman <robin@icewind.nl>
  • Loading branch information
icewind1991 authored and susnux committed Jun 28, 2023
1 parent 07b8d81 commit 88f6b7b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions workflow-templates/appstore-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,31 @@ jobs:
cd ${{ env.APP_NAME }}
composer install --no-dev
- name: Check Cargo.toml
id: check_cargo
uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2
with:
files: "${{ env.APP_NAME }}/Cargo.toml"

- name: Install musl-tools
if: steps.check_cargo.outputs.files_exists == 'true'
run: |
sudo apt-get install musl-tools
- name: Setup rust toolchain
uses: actions-rs/toolchain@v1
if: steps.check_cargo.outputs.files_exists == 'true'
with:
profile: minimal
toolchain: stable
override: true
target: x86_64-unknown-linux-musl

- name: Install cargo-cross
if: steps.check_cargo.outputs.files_exists == 'true'
run: |
cargo install cross --locked
- name: Build ${{ env.APP_NAME }}
# Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }}
Expand Down

0 comments on commit 88f6b7b

Please sign in to comment.