This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
Cached CPS can be enabled/disabled using a CPS property. #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR build | |
on: | |
pull_request: | |
branches: [main] | |
env: | |
NAMESPACE: galasa-dev | |
jobs: | |
build-extensions: | |
name: build,Test and Publish Extensions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'semeru' | |
- name: Print githash | |
run: | | |
echo $GITHUB_SHA > ./extensions.githash | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: 6.9.2 | |
- name: Test and Build Extensions using gradle | |
run: | | |
gradle -b galasa-extensions-parent/build.gradle check publish \ | |
-PsourceMaven=https://development.galasa.dev/gh/maven-repo/framework \ | |
-PcentralMaven=https://repo.maven.apache.org/maven2/ \ | |
-PtargetMaven=${{ github.workspace }}/repo | |
- name: Build extensions Image for testing | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: dockerfiles/dockerfile | |
load: true | |
tags: extensions:test | |
build-args: | | |
dockerRepository=harbor.galasa.dev | |
tag=main |