Merge pull request #1 from HungYann/homework2 #10
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: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
build: [linux] | |
include: | |
- build: linux | |
os: ubuntu-18.04 | |
rust: nightly | |
target: x86_64-unknown-linux-musl | |
archive-name: sgf-render-linux.tar.gz | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
profile: minimal | |
override: true | |
target: ${{ matrix.target }} | |
- name: Build binary | |
run: cargo build --verbose --release --target ${{ matrix.target }} | |
env: | |
RUST_BACKTRACE: 1 | |
- name: Strip binary (linux and macos) | |
if: matrix.build == 'linux' || matrix.build == 'macos' | |
run: strip "target/${{ matrix.target }}/release/sgf-render" | |
- name: Build archive | |
shell: bash | |
run: | | |
mkdir archive | |
cp LICENSE README.md archive/ | |
cd archive | |
if [ "${{ matrix.build }}" = "windows" ]; then | |
cp "../target/${{ matrix.target }}/release/sgf-render.exe" ./ | |
7z a "${{ matrix.archive-name }}" LICENSE README.md sgf-render.exe | |
else | |
cp "../target/${{ matrix.target }}/release/sgf-render" ./ | |
tar -czf "${{ matrix.archive-name }}" LICENSE README.md sgf-render | |
fi | |
- name: Upload archive | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{ matrix.archive-name }} | |
path: archive/${{ matrix.archive-name }} | |