Update version to 0.5.9 #80
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_binary | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "src/**" | |
- "tests/**" | |
- "Cargo.**" | |
workflow_dispatch: {} | |
jobs: | |
build-yevis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: "Cache builder image" | |
id: cache-builder-image | |
uses: actions/cache@v3 | |
with: | |
path: musl-builder-image | |
key: musl-builder-image | |
- name: "Pull and save builder image" | |
if: steps.cache-builder-image.outputs.cache-hit != 'true' | |
run: | | |
docker pull ekidd/rust-musl-builder:stable | |
docker save ekidd/rust-musl-builder:stable -o musl-builder-image | |
- name: "Load builder image" | |
run: docker load -i musl-builder-image | |
- name: "Cache Rust" | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: "Build yevis binary" | |
run: docker run --rm -u root -v `pwd`:/home/rust/src ekidd/rust-musl-builder:stable cargo build --release | |
- name: "Upload yevis binary" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: yevis | |
path: target/x86_64-unknown-linux-musl/release/yevis |