Skip to content

Commit 8a1843c

Browse files
minimize matrix for testing purposes
1 parent 80bbb28 commit 8a1843c

File tree

1 file changed

+28
-27
lines changed

1 file changed

+28
-27
lines changed

.github/workflows/build.yml

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
host_builds:
1616
strategy:
1717
matrix:
18-
os: [macos-latest, windows-2019]
18+
# os: [macos-latest, windows-2019]
19+
os: [macos-latest]
1920
runs-on: ${{ matrix.os }}
2021
steps:
2122
- uses: actions/checkout@v4
@@ -38,35 +39,35 @@ jobs:
3839
retention-days: 1
3940
compression-level: 0
4041

41-
container_builds:
42-
outputs:
43-
artifact_id: ${{ steps.upload.outputs.artifact-id }}
44-
runs-on: ubuntu-latest
45-
strategy:
46-
matrix:
47-
linux_arch: [s390x, arm64, amd64]
48-
steps:
49-
- uses: actions/checkout@v4
42+
# container_builds:
43+
# outputs:
44+
# artifact_id: ${{ steps.upload.outputs.artifact-id }}
45+
# runs-on: ubuntu-latest
46+
# strategy:
47+
# matrix:
48+
# linux_arch: [s390x, arm64, amd64]
49+
# steps:
50+
# - uses: actions/checkout@v4
5051

51-
- name: Set up QEMU
52-
uses: docker/setup-qemu-action@v3
52+
# - name: Set up QEMU
53+
# uses: docker/setup-qemu-action@v3
5354

54-
- name: Set up Docker Buildx
55-
uses: docker/setup-buildx-action@v3
55+
# - name: Set up Docker Buildx
56+
# uses: docker/setup-buildx-action@v3
5657

57-
- name: Run Buildx
58-
run: |
59-
docker buildx create --name builder --bootstrap --use
60-
docker buildx build --platform linux/${{ matrix.linux_arch }} --output type=local,dest=./prebuilds,platform-split=false -f ./.github/docker/Dockerfile.glibc .
58+
# - name: Run Buildx
59+
# run: |
60+
# docker buildx create --name builder --bootstrap --use
61+
# docker buildx build --platform linux/${{ matrix.linux_arch }} --output type=local,dest=./prebuilds,platform-split=false -f ./.github/docker/Dockerfile.glibc .
6162

62-
- id: upload
63-
name: Upload prebuild
64-
uses: actions/upload-artifact@v4
65-
with:
66-
name: build-linux-${{ matrix.linux_arch }}
67-
path: prebuilds/
68-
if-no-files-found: 'error'
69-
retention-days: 1
70-
compression-level: 0
63+
# - id: upload
64+
# name: Upload prebuild
65+
# uses: actions/upload-artifact@v4
66+
# with:
67+
# name: build-linux-${{ matrix.linux_arch }}
68+
# path: prebuilds/
69+
# if-no-files-found: 'error'
70+
# retention-days: 1
71+
# compression-level: 0
7172

7273

0 commit comments

Comments
 (0)