Skip to content

Commit

Permalink
build: remove raspberry builds
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed Mar 16, 2023
1 parent de37967 commit 60d518d
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 60d518d

Please sign in to comment.