Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

GitHub Actions workflow for Gradle #11

GitHub Actions workflow for Gradle

GitHub Actions workflow for Gradle #11

Workflow file for this run

name: PR build
on:
workflow_dispatch:
pull_request:
branches: [main]
env:
NAMESPACE: galasa-dev
IMAGE_TAG: ${{ github.event.number }}
jobs:
build-gradle:
name: Build Gradle source code and Docker image
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 > ./gradle.githash
- name: Check githash
run: |
cat ./gradle.githash
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 6.9.2
- name: Build Gradle source code
run: |
gradle check publish \
-PsourceMaven=https://repo.maven.apache.org/maven2/ \
-PcentralMaven=https://repo.maven.apache.org/maven2/ \
-PtargetMaven=${{ github.workspace }}/repo
# This Docker image will not be used, it's just to test that the Docker build should work
- name: Build and test Gradle image
run: |
docker build -t gradle-maven-artefacts:${{env.IMAGE_TAG}} --build-arg tag=main --build-arg dockerRepository=harbor.galasa.dev -f dockerfiles/dockerfile.gradle .
docker run --rm gradle-maven-artefacts:${{env.IMAGE_TAG}}