Skip to content

Testing if there is an issue with the gh branch maven repo #65

Testing if there is an issue with the gh branch maven repo

Testing if there is an issue with the gh branch maven repo #65

Workflow file for this run

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: Echo jade
run : |
echo "Jade"
- name: Build Extensions source code with gradle
run: |
gradle -b galasa-extensions-parent/build.gradle \
-PsourceMaven=https://development.galasa.dev/main/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