add support to provide server-side bundles per key-id (#2796) #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main Branch build | |
on: | |
push: | |
branches: | |
- 'master' | |
env: | |
GOLANG_VERSION: 1.22 | |
NODEJS_VERSION: 18 | |
JAVA_VERSION_FULL_BUILD: 17 | |
JAVA_VERSION_CLIENT_BUILD: 11 | |
JAVA_DISTRO: temurin | |
JAVA_ARCH: x64 | |
jobs: | |
athenz-build: | |
runs-on: ubuntu-latest-4-cores | |
steps: | |
- name: Checkout repository | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
id: setup-go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.GOLANG_VERSION }} | |
- name: Setup Node | |
id: setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODEJS_VERSION }} | |
- name: Setup Java | |
id: setup-java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ env.JAVA_VERSION_FULL_BUILD }} | |
distribution: ${{ env.JAVA_DISTRO }} | |
architecture: ${{ env.JAVA_ARCH }} | |
- name: Setup ZMS DB Schema file | |
run: cp servers/zms/schema/zms_server.sql servers/zms/src/test/resources/mysql | |
- name: Build Athenz | |
run: mvn -B install |