2021-06-22 19:22:11 +00:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-06-22 19:32:19 +00:00
|
|
|
- 'v*'
|
2021-06-22 19:22:11 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-09-06 16:38:40 +00:00
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-07 13:11:09 +00:00
|
|
|
outputs:
|
|
|
|
gobang_version: ${{ env.GOBANG_VERSION }}
|
2021-09-06 16:38:40 +00:00
|
|
|
env:
|
|
|
|
# For some builds, we use cross to test on 32-bit and big-endian
|
|
|
|
# systems.
|
|
|
|
CARGO: cargo
|
|
|
|
# When CARGO is set to CROSS, this is set to `--target matrix.target`.
|
|
|
|
TARGET_FLAGS: ""
|
|
|
|
# When CARGO is set to CROSS, TARGET_DIR includes matrix.target.
|
|
|
|
TARGET_DIR: ./target
|
|
|
|
# Emit backtraces on panics.
|
|
|
|
RUST_BACKTRACE: 1
|
2021-06-25 16:44:54 +00:00
|
|
|
strategy:
|
2021-09-06 17:02:41 +00:00
|
|
|
fail-fast: false
|
2021-06-25 16:44:54 +00:00
|
|
|
matrix:
|
2021-09-07 10:10:27 +00:00
|
|
|
build: [linux, linux-arm, macos, win-msvc, win32-msvc]
|
2021-09-06 16:38:40 +00:00
|
|
|
include:
|
|
|
|
- build: linux
|
|
|
|
os: ubuntu-18.04
|
2021-09-07 10:18:22 +00:00
|
|
|
rust: stable
|
2021-09-06 16:38:40 +00:00
|
|
|
target: x86_64-unknown-linux-musl
|
|
|
|
- build: linux-arm
|
|
|
|
os: ubuntu-18.04
|
2021-09-07 10:18:22 +00:00
|
|
|
rust: stable
|
2021-09-06 16:38:40 +00:00
|
|
|
target: arm-unknown-linux-gnueabihf
|
|
|
|
- build: macos
|
|
|
|
os: macos-latest
|
2021-09-07 10:18:22 +00:00
|
|
|
rust: stable
|
2021-09-06 16:38:40 +00:00
|
|
|
target: x86_64-apple-darwin
|
|
|
|
- build: win-msvc
|
|
|
|
os: windows-2019
|
2021-09-07 10:18:22 +00:00
|
|
|
rust: stable
|
2021-09-06 16:38:40 +00:00
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
- build: win32-msvc
|
|
|
|
os: windows-2019
|
2021-09-07 10:18:22 +00:00
|
|
|
rust: stable
|
2021-09-06 16:38:40 +00:00
|
|
|
target: i686-pc-windows-msvc
|
|
|
|
|
2021-06-22 19:22:11 +00:00
|
|
|
steps:
|
2021-09-06 16:38:40 +00:00
|
|
|
- name: Get the release version from the tag
|
|
|
|
shell: bash
|
|
|
|
if: env.GOBANG_VERSION == ''
|
|
|
|
run: |
|
|
|
|
# Apparently, this is the right way to get a tag name. Really?
|
|
|
|
#
|
|
|
|
# See: https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027
|
2021-09-07 13:11:09 +00:00
|
|
|
echo "GOBANG_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
|
2021-09-06 16:38:40 +00:00
|
|
|
echo "version is: ${{ env.GOBANG_VERSION }}"
|
2021-06-22 19:22:11 +00:00
|
|
|
|
2021-09-06 16:38:40 +00:00
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
target: ${{ matrix.target }}
|
|
|
|
|
|
|
|
- name: Use Cross
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cargo install cross
|
|
|
|
echo "CARGO=cross" >> $GITHUB_ENV
|
|
|
|
echo "TARGET_FLAGS=--target ${{ matrix.target }}" >> $GITHUB_ENV
|
|
|
|
echo "TARGET_DIR=./target/${{ matrix.target }}" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Show command used for Cargo
|
|
|
|
run: |
|
|
|
|
echo "cargo command is: ${{ env.CARGO }}"
|
|
|
|
echo "target flag is: ${{ env.TARGET_FLAGS }}"
|
|
|
|
echo "target dir is: ${{ env.TARGET_DIR }}"
|
|
|
|
|
|
|
|
- name: Build release binary
|
|
|
|
run: ${{ env.CARGO }} build --verbose --release ${{ env.TARGET_FLAGS }}
|
|
|
|
|
|
|
|
- name: Strip release binary (linux and macos)
|
|
|
|
if: matrix.build == 'linux' || matrix.build == 'macos'
|
|
|
|
run: strip "target/${{ matrix.target }}/release/gobang"
|
|
|
|
|
|
|
|
- name: Strip release binary (arm)
|
|
|
|
if: matrix.build == 'linux-arm'
|
|
|
|
run: |
|
|
|
|
docker run --rm -v \
|
|
|
|
"$PWD/target:/target:Z" \
|
|
|
|
rustembedded/cross:arm-unknown-linux-gnueabihf \
|
|
|
|
arm-linux-gnueabihf-strip \
|
|
|
|
/target/arm-unknown-linux-gnueabihf/release/gobang
|
|
|
|
|
|
|
|
- name: Build archive
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
staging="gobang-${{ env.GOBANG_VERSION }}-${{ matrix.target }}"
|
|
|
|
mkdir -p "$staging"/{complete,doc}
|
|
|
|
|
2021-09-07 10:30:38 +00:00
|
|
|
cp {README.md,LICENSE} "$staging/"
|
2021-09-06 16:38:40 +00:00
|
|
|
|
|
|
|
if [ "${{ matrix.os }}" = "windows-2019" ]; then
|
|
|
|
cp "target/${{ matrix.target }}/release/gobang.exe" "$staging/"
|
|
|
|
7z a "$staging.zip" "$staging"
|
|
|
|
echo "ASSET=$staging.zip" >> $GITHUB_ENV
|
|
|
|
else
|
|
|
|
# The man page is only generated on Unix systems. ¯\_(ツ)_/¯
|
|
|
|
cp "target/${{ matrix.target }}/release/gobang" "$staging/"
|
|
|
|
tar czf "$staging.tar.gz" "$staging"
|
|
|
|
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Publish
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
files: ${{ env.ASSET }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
cargo-publish:
|
2021-06-22 19:22:11 +00:00
|
|
|
name: Cargo publish
|
|
|
|
runs-on: ubuntu-latest
|
2021-09-06 16:38:40 +00:00
|
|
|
needs: release
|
2021-06-22 19:22:11 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2021-09-08 02:05:17 +00:00
|
|
|
|
|
|
|
- name: Install cargo-workspaces
|
|
|
|
uses: actions-rs/install@v0.1
|
|
|
|
with:
|
|
|
|
crate: cargo-workspaces
|
|
|
|
|
2021-09-07 13:11:09 +00:00
|
|
|
- name: Cargo publish
|
2021-08-28 09:30:32 +00:00
|
|
|
run: |
|
2021-09-07 13:11:09 +00:00
|
|
|
git config --global user.email "runner@gha.local"
|
|
|
|
git config --global user.name "Github Action"
|
|
|
|
cargo workspaces publish \
|
|
|
|
--yes --force '*' --exact \
|
|
|
|
--no-git-commit --allow-dirty --skip-published \
|
|
|
|
custom ${{ needs.create-release.outputs.gobang_version }}
|