Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #442 from cole-h/darwin-ci
Browse files Browse the repository at this point in the history
chore(ci): run on darwin too
  • Loading branch information
Profpatsch authored Jul 1, 2020
2 parents 93d9301 + d975514 commit 20d6563
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ env:
LORRI_NO_INSTALL_PANIC_HANDLER: absolutely
jobs:
rust:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -41,7 +44,10 @@ jobs:
- name: CI check
run: nix-shell --arg isDevelopmentShell false --run 'ci_check'
nix-build_stable:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -63,7 +69,10 @@ jobs:
- name: Self-upgrade
run: lorri self-upgrade local $(pwd)
nix-build_1909:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -79,7 +88,10 @@ jobs:
- name: Build
run: nix-build --arg nixpkgs ./nix/nixpkgs-1909.nix
nix-shell:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -95,7 +107,10 @@ jobs:
- name: Build
run: nix-build -A allBuildInputs shell.nix
overlay:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 20d6563

Please sign in to comment.