chore(deps): bump chrono from 0.4.26 to 0.4.39 (#26) #84
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: CICD | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
# format and lint check | |
ci_style_check: | |
name: Code Style Check | |
runs-on: windows-latest | |
env: | |
SCCACHE_GHA_ENABLED: true | |
RUSTC_WRAPPER: sccache | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Rust Setup | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: clippy, rustfmt | |
- name: Cache Setup | |
uses: mozilla-actions/sccache-action@v0.0.6 | |
- name: Format Check | |
run: cargo fmt -- --check | |
- name: Clippy Check | |
run: cargo clippy | |
# tests and build | |
ci_test_build: | |
name: Test Build | |
needs: ci_style_check | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-pc-windows-msvc | |
- target: i686-pc-windows-msvc | |
- target: aarch64-pc-windows-msvc | |
runs-on: windows-latest | |
env: | |
SCCACHE_GHA_ENABLED: true | |
RUSTC_WRAPPER: sccache | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Rust Setup | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
- name: Cache Setup | |
uses: mozilla-actions/sccache-action@v0.0.6 | |
- name: Tests Check | |
run: cargo test --workspace | |
- name: Dev Build | |
run: cargo build --locked --target ${{ matrix.target }} | |
# Create/Update release PR | |
cd_release_please: | |
name: Release Please | |
needs: ci_test_build | |
runs-on: ubuntu-latest | |
if: github.repository == 'chawyehsu/hok' && github.ref == 'refs/heads/main' && github.event_name == 'push' | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
release-type: rust | |
release-as: 0.1.0-beta.7 | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
# Build production artifacts | |
cd_release_build: | |
name: Release Build | |
needs: cd_release_please | |
if: ${{ needs.cd_release_please.outputs.release_created == 'true' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-pc-windows-msvc | |
os: windows-latest | |
name: hok-x86_64-pc-windows-msvc.zip | |
- target: i686-pc-windows-msvc | |
os: windows-latest | |
name: hok-i686-pc-windows-msvc.zip | |
- target: aarch64-pc-windows-msvc | |
os: windows-latest | |
name: hok-aarch64-pc-windows-msvc.zip | |
runs-on: ${{ matrix.os }} | |
continue-on-error: true | |
env: | |
SCCACHE_GHA_ENABLED: true | |
RUSTC_WRAPPER: sccache | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Rust Setup | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
- name: Cache Setup | |
uses: mozilla-actions/sccache-action@v0.0.6 | |
- name: Production Build | |
run: cargo build --release --locked --target ${{ matrix.target }} | |
- name: Strip artifacts [Linux] | |
if: matrix.os == 'ubuntu-latest' | |
shell: bash | |
run: | | |
case ${{ matrix.target }} in | |
aarch64-unknown-linux-gnu) sudo apt-get -y update ; sudo apt-get -y install gcc-aarch64-linux-gnu ;; | |
esac | |
STRIP="strip" | |
case ${{ matrix.target }} in | |
aarch64-unknown-linux-gnu) STRIP="aarch64-linux-gnu-strip" ;; | |
esac; | |
"${STRIP}" target/${{ matrix.target }}/release/hok | |
- name: Prepare artifacts [Windows] | |
if: matrix.os == 'windows-latest' | |
run: | | |
cd target/${{ matrix.target }}/release | |
7z a ../../../${{ matrix.name }} hok.exe | |
cd - | |
- name: Prepare artifacts [-nix] | |
if: matrix.os != 'windows-latest' | |
run: | | |
cd target/${{ matrix.target }}/release | |
tar czvf ../../../${{ matrix.name }} hok | |
cd - | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.name }} | |
path: ${{ matrix.name }} | |
# Create GitHub release with Rust build targets and release notes | |
cd_attach_artifacts: | |
name: Release Artifacts | |
needs: [cd_release_please, cd_release_build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare Artifacts | |
uses: actions/download-artifact@v4 | |
- name: Prepare Checksums | |
run: for file in hok-*/hok-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done | |
- name: Publish Release | |
run: gh release edit ${{ needs.cd_release_please.outputs.tag_name }} --draft=false --repo=chawyehsu/hok | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Attach Artifacts | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: hok-*/hok-* | |
tag_name: ${{ needs.cd_release_please.outputs.tag_name }} |