Skip to content

Commit

Permalink
.github/workflows: run darwin, pages after buildbot completes
Browse files Browse the repository at this point in the history
  • Loading branch information
zowoq committed Nov 26, 2023
1 parent 42fb151 commit 97e272a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/darwin.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: "darwin"

on:
push:
branches: [master]
status:
workflow_dispatch:

concurrency:
Expand All @@ -18,6 +17,7 @@ jobs:
matrix:
host: [darwin02, darwin03]
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'status' && github.event.context == 'buildbot/nix-eval' && github.event.state == 'success' && github.ref == 'refs/heads/master')
steps:
- uses: actions/checkout@v4
- name: Install Nix
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: "pages"

on:
push:
branches: [master]
status:
workflow_dispatch:

permissions:
Expand All @@ -17,6 +16,7 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'status' && github.event.context == 'buildbot/nix-eval' && github.event.state == 'success' && github.ref == 'refs/heads/master')
steps:
- uses: actions/checkout@v4
- name: Install Nix
Expand Down

0 comments on commit 97e272a

Please sign in to comment.