Skip to content

Merge pull request #20 from nixxquality/custom_executable #60

Merge pull request #20 from nixxquality/custom_executable

Merge pull request #20 from nixxquality/custom_executable #60

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Install GNU tar # Workaround for https://github.com/actions/cache/issues/403
if: runner.os == 'macOS'
run: |
brew install gnu-tar
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
changelog_generator/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build (bichrome)
run: cargo build --verbose
- name: Build (changelog_generator)
run: cargo build --verbose --manifest-path changelog_generator/Cargo.toml