This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
Implemented get user's access token by loginId #71
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
# | |
# Copyright contributors to the Galasa project | |
# | |
# SPDX-License-Identifier: EPL-2.0 | |
# | |
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: 'semeru' | |
- 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 check publish --info \ | |
--no-daemon --console plain \ | |
-PsourceMaven=https://development.galasa.dev/main/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=ghcr.io | |
tag=main |