Skip to content

Commit ff8c93b

Browse files
committed
Disable macOS builds
1 parent b153ade commit ff8c93b

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/aarch64-darwin.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
build:
8+
if: false # Disabled until macOS hydra builders are back online
89
name: Prebuild and Upload
910
uses: ./.github/workflows/main.yml
1011
with:

.github/workflows/aarch64-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: DevX closures for aarch64-linux
22

33
on:
4-
# Disabled until we have a new aarch64-linux hydra builder
5-
# push:
4+
push:
65

76
jobs:
87
build:
8+
if: false # Disabled until we have a new aarch64-linux hydra builder
99
name: Prebuild and Upload
1010
uses: ./.github/workflows/main.yml
1111
with:

.github/workflows/hello.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
platform:
14-
- x86_64-darwin
1514
- x86_64-linux
15+
# Disabled until macOS hydra builders are back online.
16+
#- x86_64-darwin
1617
# Skipping because we do not have runners for these set up.
1718
#- aarch64-darwin
1819
#- aarch64-linux

.github/workflows/x86_64-darwin.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
build:
8+
if: false # Disabled until macOS hydra builders are back online
89
name: Prebuild and Upload
910
uses: ./.github/workflows/main.yml
1011
with:

flake.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,11 @@
6060
};
6161
supportedSystems = [
6262
"x86_64-linux"
63-
"x86_64-darwin"
6463
# Currently no aarch64 linux builders
6564
# "aarch64-linux"
66-
"aarch64-darwin"
65+
# TODO put these back (macOS hydra builders are currently down)
66+
# "x86_64-darwin"
67+
# "aarch64-darwin"
6768
];
6869
in let flake-outputs = flake-utils.lib.eachSystem supportedSystems (system:
6970
let

0 commit comments

Comments
 (0)