-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de37967
commit 60d518d
Showing
1 changed file
with
0 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,38 +42,3 @@ jobs: | |
with: | ||
prerelease: ${{ contains(github.ref_name, 'a') }} | ||
files: ${{ env.APP_NAME }}_x86_64-unknown-linux-gnu | ||
|
||
build_raspberry: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dsherret/rust-toolchain-file@v1 | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install dependencies | ||
run: | | ||
export DEBIAN_FRONTED=noninteractive | ||
sudo apt-get -qq update | ||
sudo apt-get install -y libxkbcommon-dev libx11-dev xserver-xorg-dev xorg-dev | ||
- name: Build todos binary for Raspberry Pi 3/4 (64 bits) | ||
uses: actions-rs/[email protected] | ||
with: | ||
use-cross: true | ||
command: build | ||
args: --release --target aarch64-unknown-linux-gnu | ||
- name: Archive todos binary | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: todos-aarch64-unknown-linux-gnu | ||
path: target/aarch64-unknown-linux-gnu/release/${{ env.APP_NAME }} | ||
- name: Build todos binary for Raspberry Pi 3/4 (32 bits) | ||
uses: actions-rs/[email protected] | ||
with: | ||
use-cross: true | ||
command: build | ||
args: --release --target armv7-unknown-linux-gnueabihf | ||
- name: Archive todos binary | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: todos-armv7-unknown-linux-gnueabihf | ||
path: target/armv7-unknown-linux-gnueabihf/release/${{ env.APP_NAME }} |