From d886e2cc1d382f4b17cdf8861ba9b258784356bc Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:10:11 +0200 Subject: [PATCH 1/2] add arm profile --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 1c8dab2..9d380e8 100644 --- a/pom.xml +++ b/pom.xml @@ -141,6 +141,13 @@ + + opa-linux-arm64 + + Linuxaarch64 + + linux_arm64_static + opa-linux-amd64 From fe7bf4428dca3f847be79514ed8238e01ad7d833 Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:19:09 +0200 Subject: [PATCH 2/2] add GH action to verify the build --- .github/workflows/build.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..2a69aa8 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,31 @@ +name: Build + +on: + push: + branches: + - main + pull_request: + +jobs: + build: + name: Build (${{ matrix.runner }}) + runs-on: ${{ matrix.runner }} + strategy: + matrix: + runner: + - ubuntu-24.04 + - ubuntu-24.04-arm + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up JDK 11 + uses: actions/setup-java@v4 + with: + java-version: "11" + distribution: temurin + cache: maven + + - name: Build with Maven + run: mvn --batch-mode verify