Skip to content

Commit

Permalink
Add aarch64 native builds to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
randombit committed Jan 17, 2025
1 parent 5826859 commit a04d7ac
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,12 @@ jobs:
- target: cross-arm32
compiler: gcc
host_os: ubuntu-24.04
- target: cross-arm64
- target: shared
compiler: gcc
host_os: ubuntu-24.04
host_os: ubuntu-24.04-arm
- target: shared
compiler: clang
host_os: ubuntu-24.04-arm
- target: cross-ppc64
compiler: gcc
host_os: ubuntu-24.04
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,32 @@ jobs:
- name: Valgrind Checks
run: python3 ./src/scripts/ci_build.py --make-tool=make --cc=${{ matrix.compiler }} --custom-optimization-flags="${{ matrix.cxxflags }}" ${{ matrix.target }}

valgrind_aarch64:
name: "valgrind"
strategy:
fail-fast: false

matrix:
compiler: ["clang", "gcc"]
cxxflags: ["-O2", "-O3"]

runs-on: ubuntu-24.04-arm

steps:
- uses: actions/checkout@v4

- name: Read Repository Configuration
uses: ./.github/actions/read-repo-config

- name: Setup Build Agent
uses: ./.github/actions/setup-build-agent
with:
target: valgrind-ct-full
cache-key: linux-aarch64-${{ matrix.compiler }}-valgrind-${{ matrix.cxxflags }}

- name: Valgrind Checks
run: python3 ./src/scripts/ci_build.py --make-tool=make --cc=${{ matrix.compiler }} --custom-optimization-flags="${{ matrix.cxxflags }}" valgrind-ct-full

hybrid_tls_interop:
name: "PQ/T TLS 1.3"

Expand Down

0 comments on commit a04d7ac

Please sign in to comment.