Skip to content

Commit

Permalink
Merge pull request #156 from snshn/raspberry-pi-artifact
Browse files Browse the repository at this point in the history
Make the pipeline build and upload armhf executable with every new release
  • Loading branch information
Sunshine authored Apr 8, 2020
2 parents df71083 + 0dd540a commit 20124f4
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,43 @@
# CD GitHub Actions workflow for Monolith

name: CD

on:
release:
types: [created]
types:
- created

jobs:

windows:
runs-on: windows-latest

steps:
- run: git config --global core.autocrlf false
- name: Checkout the repository
uses: actions/checkout@master
uses: actions/checkout@v2
- name: Build and install the executable
run: cargo install --force --locked --path .
run: cargo build --release
- uses: Shopify/[email protected]
with:
name: monolith.exe
path: C:\Users\runneradmin\.cargo\bin\monolith.exe
path: target\release\monolith.exe
repo-token: ${{ secrets.GITHUB_TOKEN }}

gnu_linux_armhf:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Prepare cross-platform environment
run: |
rustup target add arm-unknown-linux-gnueabihf
git clone https://github.com/raspberrypi/tools.git rpi_tools
- name: Build and install the executable
run: |
export RUSTFLAGS="-C linker=rpi_tools/arm-bcm2708/arm-rpi-4.9.3-linux-gnueabihf/bin/arm-linux-gnueabihf-gcc"
cargo build --release --target=arm-unknown-linux-gnueabihf
- uses: Shopify/[email protected]
with:
name: monolith-gnu-linux-armhf
path: target/arm-unknown-linux-gnueabihf/release/monolith
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 20124f4

Please sign in to comment.