Skip to content

chore: updated version to 0.9.0 #23

chore: updated version to 0.9.0

chore: updated version to 0.9.0 #23

Workflow file for this run

name: release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
create-release:
name: create-release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.release.outputs.upload_url }}
trip_version: ${{ env.TRIP_VERSION }}
steps:
- name: Get the release version from the tag
shell: bash
if: env.TRIP_VERSION == ''
run: |
echo "TRIP_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
echo "version is: ${{ env.TRIP_VERSION }}"
- name: Create GitHub release
id: release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.TRIP_VERSION }}
release_name: Trippy ${{ env.TRIP_VERSION }}
body: See [CHANGELOG.md](https://github.com/fujiapple852/trippy/blob/master/CHANGELOG.md) for details.
prerelease: false
build-release:
name: build-release
needs: ['create-release']
runs-on: ${{ matrix.os }}
env:
CARGO: cargo
TARGET_FLAGS: ""
TARGET_DIR: ./target
RUST_BACKTRACE: 1
strategy:
matrix:
build: [
x86_64-linux-gnu, x86_64-linux-musl, aarch64-linux-gnu, aarch64-linux-musl,
armv7-linux-gnueabihf, armv7-linux-musleabihf, armv7-linux-musleabi,
x86_64-apple-darwin, aarch64-apple-darwin,
x86_64-pc-windows-msvc, x86_64-pc-windows-gnu, aarch64-pc-windows-msvc,
x86_64-netbsd, x86_64-freebsd
]
include:
# Linux (x86_64 & aarch64)
- build: x86_64-linux-gnu
os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- build: x86_64-linux-musl
os: ubuntu-22.04
target: x86_64-unknown-linux-musl
- build: aarch64-linux-gnu
os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
- build: aarch64-linux-musl
os: ubuntu-22.04
target: aarch64-unknown-linux-musl
# Linux (armv7)
- build: armv7-linux-gnueabihf
os: ubuntu-22.04
target: armv7-unknown-linux-gnueabihf
- build: armv7-linux-musleabihf
os: ubuntu-22.04
target: armv7-unknown-linux-musleabihf
- build: armv7-linux-musleabi
os: ubuntu-22.04
target: armv7-unknown-linux-musleabi
# macOS (x86_64 & aarch64)
- build: x86_64-apple-darwin
os: macos-latest
target: x86_64-apple-darwin
- build: aarch64-apple-darwin
os: macos-latest
target: aarch64-apple-darwin
# Windows (x86_64 & aarch64)
- build: x86_64-pc-windows-msvc
os: windows-2022
target: x86_64-pc-windows-msvc
- build: x86_64-pc-windows-gnu
os: ubuntu-22.04
target: x86_64-pc-windows-gnu
- build: aarch64-pc-windows-msvc
os: windows-2022
target: aarch64-pc-windows-msvc
# BSD (x86_64)
- build: x86_64-netbsd
os: ubuntu-22.04
target: x86_64-unknown-netbsd
- build: x86_64-freebsd
os: ubuntu-22.04
target: x86_64-unknown-freebsd
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: ${{ matrix.target }}
- name: Use Cross
shell: bash
run: |
cargo install cross --git https://github.com/cross-rs/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: Build archive
shell: bash
run: |
staging="trippy-${{ needs.create-release.outputs.trip_version }}-${{ matrix.target }}"
mkdir -p "$staging"
if [ "${{ matrix.os }}" = "windows-2022" ] || [ "${{ matrix.build }}" = "x86_64-pc-windows-gnu" ]; then
cp "target/${{ matrix.target }}/release/trip.exe" "$staging/"
7z a -tzip "$staging.zip" "$staging"
echo "ASSET=$staging.zip" >> $GITHUB_ENV
else
cp "target/${{ matrix.target }}/release/trip" "$staging/"
tar czf "$staging.tar.gz" "$staging"
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
fi
- name: Build RPM package
shell: bash
if: startsWith(matrix.build, 'x86_64-linux-gnu')
run: |
cargo install cargo-generate-rpm
cargo generate-rpm --target ${{ matrix.target }} -o target/${{ matrix.target }}/generate-rpm/trippy-${{ needs.create-release.outputs.trip_version }}-x86_64.rpm
- name: Upload RPM package
if: startsWith(matrix.build, 'x86_64-linux-gnu')
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: target/${{ matrix.target }}/generate-rpm/trippy-${{ needs.create-release.outputs.trip_version }}-x86_64.rpm
asset_name: trippy-${{ needs.create-release.outputs.trip_version }}-x86_64.rpm
asset_content_type: application/x-rpm
- name: Create Debian package
shell: bash
if: startsWith(matrix.build, 'x86_64-linux-gnu') || startsWith(matrix.build, 'x86_64-linux-musl')
run: |
cargo install cargo-deb
cargo deb --target ${{ matrix.target }} --deb-version ${{ needs.create-release.outputs.trip_version }}
case ${{ matrix.target }} in
aarch64-*-linux-*) DPKG_ARCH=arm64 ;;
arm-*-linux-*hf) DPKG_ARCH=armhf ;;
i686-*-linux-*) DPKG_ARCH=i686 ;;
x86_64-*-linux-*) DPKG_ARCH=amd64 ;;
*) DPKG_ARCH=notset ;;
esac;
echo "DPKG_ARCH=${DPKG_ARCH}" >> $GITHUB_ENV
- name: Upload Deb Release Asset
if: startsWith(matrix.build, 'x86_64-linux-gnu') || startsWith(matrix.build, 'x86_64-linux-musl')
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_content_type: application/vnd.debian.binary-package
asset_path: target/${{ matrix.target }}/debian/trippy_${{ needs.create-release.outputs.trip_version }}_${{ env.DPKG_ARCH }}.deb
asset_name: trippy_${{ matrix.target }}_${{ needs.create-release.outputs.trip_version }}_${{ env.DPKG_ARCH }}.deb
- name: Upload release archive
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ${{ env.ASSET }}
asset_name: ${{ env.ASSET }}
asset_content_type: application/octet-stream