zoxide/.github/workflows/ci.yml

54 lines
1.4 KiB
YAML
Raw Normal View History

2021-03-29 15:44:30 +00:00
name: ci
on:
push:
2022-08-28 21:25:19 +00:00
branches:
- main
- next
2021-03-29 15:44:30 +00:00
pull_request:
2021-10-29 18:31:25 +00:00
workflow_dispatch:
2022-04-25 09:15:46 +00:00
env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
CARGO_INCREMENTAL: 0
2022-05-19 11:07:25 +00:00
CARGO_TERM_COLOR: always
2022-04-25 09:15:46 +00:00
2021-03-29 15:44:30 +00:00
jobs:
ci:
2021-10-29 18:31:25 +00:00
name: ${{ matrix.os }}
2021-03-29 15:44:30 +00:00
runs-on: ${{ matrix.os }}
strategy:
matrix:
# FIXME: Enable macos-latest when this is merged: https://nixpk.gs/pr-tracker.html?pr=163924
os: [ubuntu-latest, windows-latest]
2021-03-29 15:44:30 +00:00
steps:
- uses: actions/checkout@v2
2022-02-25 04:19:45 +00:00
with:
fetch-depth: 0
2021-10-29 18:31:25 +00:00
- uses: actions-rs/toolchain@v1
2021-03-29 15:44:30 +00:00
if: ${{ matrix.os == 'windows-latest' }}
with:
2021-10-29 18:31:25 +00:00
toolchain: stable
components: rustfmt, clippy
profile: minimal
override: true
2022-04-25 09:15:46 +00:00
- uses: cachix/install-nix-action@v16
2021-03-29 15:44:30 +00:00
if: ${{ matrix.os != 'windows-latest' }}
with:
2022-04-25 09:15:46 +00:00
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v10
if: ${{ matrix.os != 'windows-latest' && env.CACHIX_AUTH_TOKEN != '' }}
with:
authToken: ${{ env.CACHIX_AUTH_TOKEN }}
name: zoxide
- name: Setup cache
uses: Swatinem/rust-cache@v1
2022-08-12 07:13:41 +00:00
with:
key: ${{ matrix.target }}
2021-10-29 18:31:25 +00:00
2021-10-11 20:05:24 +00:00
- run: cargo xtask ci
2021-10-29 18:31:25 +00:00
if: ${{ matrix.os == 'windows-latest' }}
2021-12-05 08:58:31 +00:00
- run: nix-shell --cores 0 --pure --run 'rm -rf ~/.cargo/bin; cargo xtask ci'
2021-10-29 18:31:25 +00:00
if: ${{ matrix.os != 'windows-latest' }}