Skip to content

Check out with all history for git describe #54

Check out with all history for git describe

Check out with all history for git describe #54

Workflow file for this run

on:
push:
tags:
- 'v*'
branches:
- master
- next
pull_request:
branches:
- master
name: Robot builder
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17, 21 ]
name: Java ${{ matrix.java }}
steps:
- name: Checkout with submodules
uses: actions/[email protected]
with:
submodules: true
fetch-depth: 0 # To make git describe give the intended output
fetch-tags: true
- name: Setup java
uses: actions/[email protected]
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- name: Set SSH key
if: github.event_name != 'pull_request'
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Add host key
if: github.event_name != 'pull_request'
run: ssh-keyscan javacard.pro >> ~/.ssh/known_hosts
- name: Run Maven for capfile
if: matrix.java != 8
run: ./mvnw -T1C -B -U verify
- name: Run ANT tests
if: matrix.java != 21
run: ant test dist
- name: Get SHA-256 of ant-javacard.jar
run: echo "JARSUM=$(shasum -a 256 ant-javacard.jar | cut -d' ' -f 1)" >> "$GITHUB_ENV"
- name: Deploy package or snapshot
if: github.event_name != 'pull_request' && matrix.java == '11'
run: ./mvnw -B -U deploy
- name: Upload
if: github.event_name != 'pull_request' && matrix.java == '11'
uses: actions/[email protected]
with:
name: ant-javacard.jar
path: ant-javacard.jar
- name: Release
if: startsWith(github.ref, 'refs/tags/v') && matrix.java == '11'
id: create_release
uses: softprops/[email protected]
with:
files: |
ant-javacard.jar
fail_on_unmatched_files: true
body: "Release ${{ github.ref_name }}, with SHA-256: `${{ env.JARSUM }}` (built with JDK-11)"
prerelease: true # manually promoted