chore: update release workflow to package remon-server binary #9
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
name: Build on Pull Request | |
on: | |
# pull_request: | |
# branches: | |
# - dev | |
push: | |
branches: | |
- pre_presentation | |
- feature/* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: [x86_64-unknown-linux-gnu] | |
# target: [x86_64-unknown-linux-gnu, aarch64-unknown-linux-gnu] | |
include: | |
- target: x86_64-unknown-linux-gnu | |
platform: debian | |
# - target: aarch64-unknown-linux-gnu | |
# platform: arm | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
run: rustup target add ${{ matrix.target }} | |
- name: Install Dependencies | |
shell: bash | |
run: | | |
if [ "${{ runner.os }}" = "Linux" ]; then | |
sudo apt-get update | |
sudo apt-get install -y libssl-dev protobuf-compiler | |
elif [ "${{ runner.os }}" = "macOS" ]; then | |
brew install protobuf | |
elif [ "${{ runner.os }}" = "Windows" ]; then | |
choco install protoc | |
else | |
echo "Unsupported OS" | |
exit 1 | |
fi | |
- name: Build project | |
run: cargo build --release --target ${{ matrix.target }} | |
- name: Package binary | |
run: | | |
mkdir -p dist | |
ls -la target/x86_64-unknown-linux-gnu/release | |
cp target/${{ matrix.target }}/release/remon-server dist/ | |
tar -czvf ${{ matrix.platform }}-${{ matrix.target }}-pr-release.tar.gz -C dist . | |
shell: bash | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ matrix.platform }}-${{ matrix.target }}-pr-release | |
path: ./${{ matrix.platform }}-${{ matrix.target }}-pr-release.tar.gz |