Skip to content

FI framework and caller stack tracking #131

FI framework and caller stack tracking

FI framework and caller stack tracking #131

Workflow file for this run

name: Build robot
on:
push:
branches:
- next
tags:
- 'v*'
pull_request:
branches:
- next
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
java: [ 17, 21, 25 ]
name: Java ${{ matrix.java }} build
steps:
- name: Checkout
uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0 # To make git describe give the intended output
fetch-tags: true
- name: Setup Java
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: zulu
cache: maven
- name: Run Maven
run: ./mvnw -B --no-transfer-progress initialize && ./mvnw -B --no-transfer-progress -T1C -U verify
- name: Deploy package
if: matrix.java == '17' && (github.ref == 'refs/heads/next' || startsWith(github.ref, 'refs/tags/v'))
uses: martinpaljak/maven-ssh-deploy@v1
with:
key: ${{ secrets.SSH_KEY }}
user: mvn@mvn.javacard.pro
host_fp: SHA256:auiF3nHWvDmvq2stDl+QEECCqMcDp+FY1/bDRnvxpRw