diff options
author | Michael Forney <mforney@mforney.org> | 2021-04-08 01:09:07 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-04-08 01:09:07 -0700 |
commit | cce446166495cb2159bc2b4fd1c2418f0f516a07 (patch) | |
tree | 70caddf881cf35c081c145e99890239e8a346d9c | |
parent | 6b5d015ee3ad1fe46e3238b7505dd6e0047a8f7b (diff) | |
download | cproc-cce446166495cb2159bc2b4fd1c2418f0f516a07.tar.xz |
CI: Fix debian-aarch64 dependency packages
It appears that these packages recommended by gcc-aarch64-linux-gnu
and qemu-user are no longer installed automatically, so list them
explicitly.
-rw-r--r-- | .builds/debian-aarch64.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.builds/debian-aarch64.yml b/.builds/debian-aarch64.yml index 3c134ad..0e67a43 100644 --- a/.builds/debian-aarch64.yml +++ b/.builds/debian-aarch64.yml @@ -1,7 +1,9 @@ image: debian/sid packages: - gcc-aarch64-linux-gnu +- libc-dev-arm64-cross - qemu-user +- qemu-user-binfmt sources: - https://git.sr.ht/~mcf/cproc - https://git.sr.ht/~mcf/qbe @@ -22,7 +24,7 @@ tasks: --with-gcc-libdir="${crtbegin%/*}" make all check make bootstrap LDFLAGS='-Wl,-rpath,/usr/aarch64-linux-gnu/lib' - file stage2/cproc stage2/cproc-qbe + aarch64-linux-gnu-readelf -h stage2/cproc stage2/cproc-qbe triggers: - action: email condition: failure |