-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workflows: Update actions & Check packages upon push
- Loading branch information
1 parent
119eee2
commit 4fb5fb7
Showing
3 changed files
with
40 additions
and
8 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,21 @@ | ||
name: "Check evaluation" | ||
on: [push] | ||
jobs: | ||
check_evaluation: | ||
runs-on: macos-14 # The processor on this label is M1, not x86_64 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install nix | ||
uses: cachix/install-nix-action@v25 | ||
with: | ||
nix_path: nixpkgs=channel:nixos-unstable | ||
|
||
- name: Verify update.sh | ||
run: | | ||
chmod +x update.sh | ||
./update.sh | ||
- name: Build nix packages | ||
run: nix-build ci-shell.nix |
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
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,10 @@ | ||
{ pkgs ? import <nixpkgs> { overlays = [ (import ./overlay.nix) ]; } }: | ||
pkgs.mkShell { | ||
packages = with pkgs; [ | ||
firefox-bin | ||
firefox-beta-bin | ||
firefox-devedition-bin | ||
firefox-esr-bin | ||
firefox-nightly-bin | ||
]; | ||
} |