aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r--.github/workflows/build.yaml19
1 files changed, 10 insertions, 9 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 65771241465..9b84be9ba13 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -40,11 +40,12 @@ jobs:
if: "!contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')"
container:
- image: 'ghcr.io/void-linux/xbps-src-masterdir:20230708RC01-${{ matrix.config.bootstrap }}'
+ image: ghcr.io/void-linux/void-buildroot-${{ matrix.config.libc }}:20230818R1
+ options: --platform ${{ matrix.config.platform }}
env:
PATH: '/usr/libexec/chroot-git:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/usr/local/bin:/tmp/bin'
ARCH: '${{ matrix.config.arch }}'
- BOOTSTRAP: '${{ matrix.config.bootstrap }}'
+ BOOTSTRAP: '${{ matrix.config.host }}'
TEST: '${{ matrix.config.test }}'
HOSTREPO: /hostrepo
@@ -52,13 +53,13 @@ jobs:
fail-fast: false
matrix:
config:
- - { arch: x86_64, bootstrap: x86_64, test: 1 }
- - { arch: i686, bootstrap: i686, test: 1 }
- - { arch: aarch64, bootstrap: x86_64, test: 0 }
- - { arch: armv7l, bootstrap: x86_64, test: 0 }
- - { arch: x86_64-musl, bootstrap: x86_64-musl, test: 1 }
- - { arch: armv6l-musl, bootstrap: x86_64-musl, test: 0 }
- - { arch: aarch64-musl, bootstrap: x86_64-musl, test: 0 }
+ - { arch: x86_64, host: x86_64, libc: glibc, platform: linux/amd64, test: 1 }
+ - { arch: i686, host: i686, libc: glibc, platform: linux/386, test: 1 }
+ - { arch: aarch64, host: x86_64, libc: glibc, platform: linux/amd64, test: 0 }
+ - { arch: armv7l, host: x86_64, libc: glibc, platform: linux/amd64, test: 0 }
+ - { arch: x86_64-musl, host: x86_64-musl, libc: musl, platform: linux/amd64, test: 1 }
+ - { arch: armv6l-musl, host: x86_64-musl, libc: musl, platform: linux/amd64, test: 0 }
+ - { arch: aarch64-musl, host: x86_64-musl, libc: musl, platform: linux/amd64, test: 0 }
steps:
- name: Prepare container