Skip to content

Update CI config (#95) #3

Update CI config (#95)

Update CI config (#95) #3

Workflow file for this run

name: Gradle Package
on:
push:
branches: [ gradle-build ]
pull_request:
branches: [ gradle-build ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'temurin'
cache: gradle
- name: Building jpf-symbc with Gradle
run: |
git submodule update --recursive
./gradlew :jpf-core:buildJars
./gradlew :jpf-symbc:buildJar
- name: Testing jpf-symbc with Junit version 4.2
run: |
./gradlew :jpf-symbc:test