This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
Testing if there is an issue with the gh branch maven repo #59
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 Extensions source code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Print githash | |
run: | | |
echo $GITHUB_SHA > ./extensions.githash | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-version: 8.9 | |
- name: Build Extensions source code with gradle | |
run: | | |
gradle -b galasa-extensions-parent/build.gradle \ | |
-PsourceMaven=https://development.galasa.dev/gh/maven-repo/framework/ \ | |
-PcentralMaven=https://repo.maven.apache.org/maven2/ \ | |
-PtargetMaven=${{ github.workspace }}/repo \ | |
--no-daemon --console plain \ | |
check publish --info | |
- 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=ghcr.io | |
tag=main |