Skip to content

Merge pull request #10 from UbiqueInnovation/bugfix/generateLocaleCon… #23

Merge pull request #10 from UbiqueInnovation/bugfix/generateLocaleCon…

Merge pull request #10 from UbiqueInnovation/bugfix/generateLocaleCon… #23

Workflow file for this run

name: Build Example
on: [ push, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
module: ["examplekts", "examplegroovy"]
task: ["assemble", "uploadToAlpakaTeschtRelease --alpaka-dryrun"]
steps:
# Checkout repository
- name: Checkout
uses: actions/[email protected]
# Setup JDK environment
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: '17'
# Run the Gradle task
- name: Run :${{ matrix.module }}:${{ matrix.task }}
run: ./gradlew clean :${{ matrix.module }}:${{ matrix.task }}