Skip to content

Commit 720cad3

Browse files
committed
Remove x86_64-darwin from CI
1 parent abc7c85 commit 720cad3

File tree

4 files changed

+5
-29
lines changed

4 files changed

+5
-29
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,6 @@ jobs:
122122
runner: ubuntu-24.04
123123
- system: ARM64-Linux
124124
runner: ubuntu-24.04-arm
125-
- system: X64-macOS
126-
runner: macos-13
127125
- system: ARM64-macOS
128126
runner: macos-15
129127
steps:

.github/workflows/release-branches.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ jobs:
3333
- name: Persist the cache binary
3434
run: cp ./cache-binary-ARM64-macOS/flake-checker ./artifacts/ARM64-macOS
3535

36-
- uses: actions/[email protected]
37-
with:
38-
name: flake-checker-X64-macOS
39-
path: cache-binary-X64-macOS
40-
- name: Persist the cache binary
41-
run: cp ./cache-binary-X64-macOS/flake-checker ./artifacts/X64-macOS
42-
4336
- uses: actions/[email protected]
4437
with:
4538
name: flake-checker-X64-Linux

.github/workflows/release-prs.yaml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
# Only intra-repo PRs are allowed to have PR artifacts uploaded
1515
# We only want to trigger once the upload once in the case the upload label is added, not when any label is added
1616
if: |
17-
github.event.pull_request.head.repo.full_name == 'DeterminateSystems/flake-checker'
18-
&& (
19-
(github.event.action == 'labeled' && github.event.label.name == 'upload to s3')
20-
|| (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'upload to s3'))
21-
)
17+
github.event.pull_request.head.repo.full_name == 'DeterminateSystems/flake-checker'
18+
&& (
19+
(github.event.action == 'labeled' && github.event.label.name == 'upload to s3')
20+
|| (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'upload to s3'))
21+
)
2222
uses: ./.github/workflows/build.yaml
2323

2424
release:
@@ -42,13 +42,6 @@ jobs:
4242
- name: Persist the cache binary
4343
run: cp ./cache-binary-ARM64-macOS/flake-checker ./artifacts/ARM64-macOS
4444

45-
- uses: actions/[email protected]
46-
with:
47-
name: flake-checker-X64-macOS
48-
path: cache-binary-X64-macOS
49-
- name: Persist the cache binary
50-
run: cp ./cache-binary-X64-macOS/flake-checker ./artifacts/X64-macOS
51-
5245
- uses: actions/[email protected]
5346
with:
5447
name: flake-checker-X64-Linux

.github/workflows/release-tags.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,6 @@ jobs:
3131
- name: Persist the cache binary
3232
run: cp ./cache-binary-ARM64-macOS/flake-checker ./artifacts/ARM64-macOS
3333

34-
- uses: actions/[email protected]
35-
with:
36-
name: flake-checker-X64-macOS
37-
path: cache-binary-X64-macOS
38-
- name: Persist the cache binary
39-
run: cp ./cache-binary-X64-macOS/flake-checker ./artifacts/X64-macOS
40-
4134
- uses: actions/[email protected]
4235
with:
4336
name: flake-checker-X64-Linux
@@ -63,7 +56,6 @@ jobs:
6356
- name: Rename binaries for GH release
6457
run: |
6558
mv ./artifacts/{,flake-checker-}ARM64-macOS
66-
mv ./artifacts/{,flake-checker-}X64-macOS
6759
mv ./artifacts/{,flake-checker-}X64-Linux
6860
mv ./artifacts/{,flake-checker-}ARM64-Linux
6961

0 commit comments

Comments
 (0)