2020-04-09 01:29:17 +02:00
|
|
|
# CD GitHub Actions workflow for Monolith
|
|
|
|
|
2020-04-05 20:29:06 +02:00
|
|
|
name: CD
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
2020-04-09 01:29:17 +02:00
|
|
|
types:
|
|
|
|
- created
|
2020-04-05 20:29:06 +02:00
|
|
|
|
|
|
|
jobs:
|
2020-04-09 01:29:17 +02:00
|
|
|
|
2020-04-05 20:29:06 +02:00
|
|
|
windows:
|
2020-04-18 19:44:26 +02:00
|
|
|
runs-on: windows-2019
|
2020-04-05 20:29:06 +02:00
|
|
|
steps:
|
|
|
|
- run: git config --global core.autocrlf false
|
|
|
|
- name: Checkout the repository
|
2020-04-09 01:29:17 +02:00
|
|
|
uses: actions/checkout@v2
|
2020-04-05 21:32:25 +02:00
|
|
|
- name: Build and install the executable
|
2020-04-09 01:29:17 +02:00
|
|
|
run: cargo build --release
|
2020-04-05 20:29:06 +02:00
|
|
|
- uses: Shopify/upload-to-release@1.0.0
|
|
|
|
with:
|
|
|
|
name: monolith.exe
|
2020-04-09 01:29:17 +02:00
|
|
|
path: target\release\monolith.exe
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
gnu_linux_armhf:
|
2020-04-18 19:44:26 +02:00
|
|
|
runs-on: ubuntu-18.04
|
2020-04-09 01:29:17 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout the repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Prepare cross-platform environment
|
|
|
|
run: |
|
2020-04-18 19:44:26 +02:00
|
|
|
sudo mkdir -p /cross-build-arm
|
|
|
|
sudo echo "deb [arch=armhf] http://ports.ubuntu.com/ubuntu-ports/ bionic main" >> /etc/apt/sources.list
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-armhf-cross libc6-dev-armhf-cross
|
|
|
|
sudo apt-get download libssl1.1:armhf libssl-dev:armhf
|
|
|
|
sudo dpkg -x libssl1.1*.deb /cross-build-arm
|
|
|
|
sudo dpkg -x libssl-dev*.deb /cross-build-arm
|
2020-04-09 01:29:17 +02:00
|
|
|
rustup target add arm-unknown-linux-gnueabihf
|
2020-04-18 19:44:26 +02:00
|
|
|
echo "::set-env name=C_INCLUDE_PATH::/cross-build-arm/usr/include"
|
|
|
|
echo "::set-env name=OPENSSL_INCLUDE_DIR::/cross-build-arm/usr/include/arm-linux-gnueabihf"
|
|
|
|
echo "::set-env name=OPENSSL_LIB_DIR::/cross-build-arm/usr/lib/arm-linux-gnueabihf"
|
|
|
|
echo "::set-env name=PKG_CONFIG_ALLOW_CROSS::1"
|
|
|
|
echo "::set-env name=RUSTFLAGS::-C linker=arm-linux-gnueabihf-gcc -L/usr/arm-linux-gnueabihf/lib -L/cross-build-arm/usr/lib/arm-linux-gnueabihf -L/cross-build-arm/lib/arm-linux-gnueabihf"
|
|
|
|
- name: Build the executable
|
2020-04-09 01:29:17 +02:00
|
|
|
run: |
|
|
|
|
cargo build --release --target=arm-unknown-linux-gnueabihf
|
2020-04-18 19:44:26 +02:00
|
|
|
- name: Attach artifact to the release
|
|
|
|
uses: Shopify/upload-to-release@1.0.0
|
2020-04-09 01:29:17 +02:00
|
|
|
with:
|
|
|
|
name: monolith-gnu-linux-armhf
|
|
|
|
path: target/arm-unknown-linux-gnueabihf/release/monolith
|
2020-04-05 20:29:06 +02:00
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|