build(deps): update object requirement from 0.31.0 to 0.36.1 #182
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: | |
paths-ignore: | |
- 'extra/**' | |
tags: | |
jobs: | |
build_release: | |
name: Build | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update rust toolchain | |
run: rustup toolchain install stable --profile minimal | |
- name: Restore Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Build (Release) | |
run: cargo build -r | |
- name: Upload results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bouf-build-${{ matrix.os }} | |
path: target/release/bouf* | |
publish_release: | |
name: Publish Release | |
needs: build_release | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: 'repo' | |
sparse-checkout: 'extra/nsis' | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Package binaries | |
run: | | |
zip -j -r9 bouf-windows-${{ github.ref_name }}.zip bouf-build-windows-*/ | |
zip -j -r9 bouf-mac-${{ github.ref_name }}.zip bouf-build-macos-*/ | |
zip -j -r9 bouf-linux-${{ github.ref_name }}.zip bouf-build-ubuntu-*/ | |
zip -j -r9 bouf-nsis-${{ github.ref_name }}.zip repo/extra/nsis | |
- name: Generate Checksums | |
run: | | |
: Generate Checksums | |
shopt -s extglob | |
echo "### Checksums" > ${{ github.workspace }}/CHECKSUMS.txt | |
for file in ${{ github.workspace }}/@(*.tar.xz|*.zip); do | |
echo " ${file##*/}: $(sha256sum "${file}" | cut -d " " -f 1)" >> ${{ github.workspace }}/CHECKSUMS.txt | |
done | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 | |
with: | |
draft: true | |
prerelease: false | |
name: Bouf ${{ github.ref_name }} | |
body_path: ${{ github.workspace }}/CHECKSUMS.txt | |
files: | | |
${{ github.workspace }}/bouf*.zip | |
tests: | |
name: Run tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update rust toolchain | |
run: rustup toolchain install stable --profile minimal | |
- name: Restore Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Run Tests | |
run: cargo test --bin bouf |