diff options
author | Joe Orton <jorton@apache.org> | 2025-01-20 18:01:17 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2025-01-20 18:01:17 +0100 |
commit | 1cc6aeb6ce26fc2d32297d35cae887e3a56cc021 (patch) | |
tree | 85cc881d0d9736f4eb0b0e1cdc87cf6d11bbfc64 /.github/workflows/linux.yml | |
parent | Add a Changes entry related to r1917017 (diff) | |
download | apache2-1cc6aeb6ce26fc2d32297d35cae887e3a56cc021.tar.xz apache2-1cc6aeb6ce26fc2d32297d35cae887e3a56cc021.zip |
CI: Add 64-bit ARM job to Linux workflow. See:
https://github.blog/changelog/2025-01-16-linux-arm64-hosted-runners-now-available-for-free-in-public-repositories-public-preview/
Github: closes #511
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1923271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/linux.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d4436b86e6..4ccbd2890a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -50,6 +50,10 @@ jobs: - name: Shared MPMs, all-modules config: --enable-mods-shared=reallyall --enable-mpms-shared=all # ------------------------------------------------------------------------- + - name: Shared MPMs, all-modules, 64-bit ARM + config: --enable-mods-shared=reallyall --enable-mpms-shared=all + os: ubuntu-22.04-arm64 + # ------------------------------------------------------------------------- - name: Event MPM, all-modules, mod_cgid only config: --enable-mods-shared=reallyall --with-mpm=event --disable-cgi # ------------------------------------------------------------------------- @@ -312,7 +316,7 @@ jobs: APU_CONFIG="--without-crypto" pkgs: subversion # ------------------------------------------------------------------------- - runs-on: ubuntu-latest + runs-on: ${{ matrix.os == '' && 'ubuntu-latest' || matrix.os }} timeout-minutes: 30 env: NOTEST_CFLAGS: ${{ matrix.notest-cflags }} |