-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7e68a5f
commit 93d7db4
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
env: | ||
# Required to make things output color | ||
TERM: ansi | ||
|
||
jobs: | ||
ci: | ||
name: CI | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Sync repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Uninstall obstructive tools | ||
run: rm -rf "$HOME/.rustup" "$HOME/.cargo" | ||
|
||
- name: Install Nix (with flakes and nix-command enabled) | ||
uses: cachix/install-nix-action@v23 | ||
with: | ||
nix_path: nixpkgs=channel:nixos-unstable | ||
|
||
# Add the `nix-community` cachix to speed up things that leverage it | ||
extra_nix_config: | | ||
extra-substituters = https://nix-community.cachix.org | ||
extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= | ||
- name: Configure `nix-direnv` | ||
run: | | ||
mkdir -p "$HOME/.config/nixpkgs" | ||
echo "[(self: super: { nix-direnv = super.nix-direnv.override { enableFlakes = true; }; })]" > "$HOME/.config/nixpkgs/overlays.nix" | ||
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc" | ||
- name: Install `direnv` and `nix-direnv` | ||
run: nix-env -f "<nixpkgs>" -i direnv -i nix-direnv | ||
|
||
- name: Pop/push downloaded crate cache | ||
uses: actions/cache@v3 | ||
with: | ||
key: downloaded-crates | ||
path: ~/.cargo | ||
|
||
- name: Pop/push compiled crate cache | ||
uses: actions/cache@v3 | ||
with: | ||
key: compiled-crates-${{runner.os}} | ||
path: target | ||
|
||
# Do this to shorten the logs for the real CI step | ||
- name: Populate `/nix/store` | ||
run: nix develop --command true | ||
|
||
- name: Perform continuous integration | ||
run: | | ||
direnv allow | ||
direnv exec . engage |