-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from snshn/raspberry-pi-artifact
Make the pipeline build and upload armhf executable with every new release
- Loading branch information
Showing
1 changed file
with
27 additions
and
5 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 |
---|---|---|
@@ -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 }} |