-
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.
Merge pull request #6 from Anton-Latukha/2020-07-06-workflow-add-Nixp…
…kgs-macOS Workflow: add Nixpkgs-macOS
- Loading branch information
Showing
2 changed files
with
27 additions
and
23 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,27 @@ | ||
name: "Nixpkgs, macOS" | ||
# Due to macOS is a side-build to test the platform, using nixos-unstable for additional long-term stability of it | ||
on: | ||
# On Git changes in PR | ||
pull_request: | ||
# On Git changes of the master | ||
push: | ||
branches: | ||
- master | ||
schedule: | ||
# Every day at 04:45 | ||
- cron: "45 01 * * *" | ||
jobs: | ||
Nixpkgs_unstable_macOS: | ||
name: NixOS-unstable, default GHC (8.8) | ||
runs-on: macos-latest | ||
continue-on-error: true | ||
env: | ||
useRev: "true" | ||
rev: "nixos-unstable" | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v2 | ||
- name: Install Nix | ||
uses: cachix/install-nix-action@v10 | ||
- name: Determined nix-build | ||
run: ./build.sh |
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