Skip to content

Peass (main) Pure Demo #2236

Peass (main) Pure Demo

Peass (main) Pure Demo #2236

Workflow file for this run

name: Peass (main) Pure Demo
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: "0 */8 * * *"
jobs:
runDemo:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 1.8, 11, 17 ]
rcaStrategy: [ COMPLETE, LEVELWISE, UNTIL_SOURCE_CHANGE ]
fail-fast: false
name: Pure Java Demo ${{ matrix.java }} rcaStrategy ${{ matrix.rcaStrategy }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: executeAll
run: cd pure-demo && ./executeAll.sh main ${{ matrix.rcaStrategy }}