From 795d295590735c4a2e7fbd0ff093b667af83ea43 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Sun, 2 Oct 2022 10:04:34 -0700 Subject: [PATCH] Tune GitHub Actions to use APE loader --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2b69d7f53..ddacc1a61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,8 +21,11 @@ jobs: steps: - uses: actions/checkout@v3 - - name: support ape bins - run: sudo sh -c "echo ':APE:M::MZqFpD::/bin/sh:' >/proc/sys/fs/binfmt_misc/register" + - name: support ape bins 1 + run: sudo cp build/bootstrap/ape.elf /usr/bin/ape + + - name: support ape bins 2 + run: sudo sh -c "echo ':APE:M::MZqFpD::/usr/bin/ape:' >/proc/sys/fs/binfmt_misc/register" - name: make matrix run: V=0 make -j2 MODE=${{ matrix.mode }}