Skip to content

Commit

Permalink
Add copyright
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Carino <carino_jade@yahoo.co.uk>
  • Loading branch information
jadecarino committed Aug 30, 2024
1 parent d3f1799 commit e6f6178
Show file tree
Hide file tree
Showing 2 changed files with 186 additions and 176 deletions.
211 changes: 108 additions & 103 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,110 +1,115 @@
name: Main Build
#
# Copyright contributors to the Galasa project
#
# SPDX-License-Identifier: EPL-2.0
#
name: Main build

on:
push:
branches: [main]
push:
branches: [main]

env:
REGISTRY: ghcr.io
NAMESPACE: galasa-dev
REGISTRY: ghcr.io
NAMESPACE: galasa-dev

jobs:
build-integrationtests:
name: Building the Integration Tests Repository
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'
cache: maven
- name: Print githash
run: |
echo $GITHUB_SHA > ./inttests.githash
build-integrationtests:
name: Building the Integration Tests Repository
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'
cache: maven

- name: Print githash
run: |
echo $GITHUB_SHA > ./inttests.githash
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.9
- name: Build Integration Tests Gradle source code
run: |
set -o pipefail
gradle -b galasa-inttests-parent/build.gradle publish publishToMavenLocal --info \
-PsourceMaven=https://development.galasa.dev/gh/maven-repo/obr \
-PcentralMaven=https://repo.maven.apache.org/maven2/ \
-PtargetMaven=${{github.workspace}}/repo 2>&1 | tee gradle-build.log
- name: Upload Gradle Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-gradle-build-log
path: gradle-build.log
retention-days: 7
- name: Building Integration Tests Maven source code
run: |
set -o pipefail
mvn -f galasa-inttests-parent/dev.galasa.inttests.obr/pom.xml -X deploy \
-Dgalasa.source.repo=https://development.galasa.dev/gh/maven-repo/obr \
-Dgalasa.central.repo=https://repo.maven.apache.org/maven2/ \
-Dgalasa.release.repo=file:${{ github.workspace }}/repo \
-Dgalasa.skip.deploytestcatalog=true \
-Dgalasa.skip.bundletestcatalog=false \
--batch-mode --errors --fail-at-end \
--settings ${{github.workspace}}/settings.xml 2>&1 | tee maven-build.log
- name: Upload Maven Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-obr-maven-build-log
path: maven-build.log
retention-days: 7
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata for Integration Tests image
id: metadata
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/inttests-maven-artefacts

- name: Build Integration Tests image for development Maven registry
id: build
uses: docker/build-push-action@v5
with:
context: .
file: dockerfiles/dockerfile.inttests
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
build-args: |
baseVersion=latest
dockerRepository=ghcr.io
branch=main
- name: Recycle application in ArgoCD
env:
ARGOCD_AUTH_TOKEN: ${{ secrets.ARGOCD_TOKEN }}
run: |
docker run --env ARGOCD_AUTH_TOKEN=${{ env.ARGOCD_AUTH_TOKEN }} --rm -v ${{ github.workspace }}:/var/workspace ghcr.io/galasa-dev/argocdcli:main app actions run gh-maven-repos restart --kind Deployment --resource-name inttests-gh --server argocd.galasa.dev
- name: Wait for app health in ArgoCD
env:
ARGOCD_AUTH_TOKEN: ${{ secrets.ARGOCD_TOKEN }}
run: |
docker run --env ARGOCD_AUTH_TOKEN=${{ env.ARGOCD_AUTH_TOKEN }} --rm -v ${{ github.workspace }}:/var/workspace ghcr.io/galasa-dev/argocdcli:main app wait gh-maven-repos --resource apps:Deployment:inttests-gh --health --server argocd.galasa.dev
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.9

- name: Build Integration Tests Gradle source code
run: |
set -o pipefail
gradle -b galasa-inttests-parent/build.gradle publish publishToMavenLocal --info \
--no-daemon --console plain \
-PsourceMaven=https://development.galasa.dev/main/maven-repo/obr \
-PcentralMaven=https://repo.maven.apache.org/maven2/ \
-PtargetMaven=${{github.workspace}}/repo 2>&1 | tee gradle-build.log
- name: Upload Gradle Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-gradle-build-log
path: gradle-build.log
retention-days: 7

- name: Building Integration Tests Maven source code
run: |
set -o pipefail
mvn -f galasa-inttests-parent/dev.galasa.inttests.obr/pom.xml deploy -X \
-Dgalasa.source.repo=https://development.galasa.dev/main/maven-repo/obr \
-Dgalasa.central.repo=https://repo.maven.apache.org/maven2/ \
-Dgalasa.release.repo=file:${{ github.workspace }}/repo \
-Dgalasa.skip.deploytestcatalog=true \
-Dgalasa.skip.bundletestcatalog=false \
--batch-mode --errors --fail-at-end \
--settings ${{ github.workspace }}/settings.xml 2>&1 | tee maven-build.log
- name: Upload Maven Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-obr-maven-build-log
path: maven-build.log
retention-days: 7

- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata for Integration Tests image
id: metadata
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/inttests-maven-artefacts

- name: Build Integration Tests image for development Maven registry
id: build
uses: docker/build-push-action@v5
with:
context: .
file: dockerfiles/dockerfile.inttests
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
build-args: |
baseVersion=latest
dockerRepository=ghcr.io
branch=main
- name: Recycle application in ArgoCD
env:
ARGOCD_AUTH_TOKEN: ${{ secrets.ARGOCD_TOKEN }}
run: |
docker run --env ARGOCD_AUTH_TOKEN=${{ env.ARGOCD_AUTH_TOKEN }} --rm -v ${{ github.workspace }}:/var/workspace ghcr.io/galasa-dev/argocdcli:main app actions run main-inttests restart --kind Deployment --resource-name inttests-main --server argocd.galasa.dev
- name: Wait for app health in ArgoCD
env:
ARGOCD_AUTH_TOKEN: ${{ secrets.ARGOCD_TOKEN }}
run: |
docker run --env ARGOCD_AUTH_TOKEN=${{ env.ARGOCD_AUTH_TOKEN }} --rm -v ${{ github.workspace }}:/var/workspace ghcr.io/galasa-dev/argocdcli:main app wait main-inttests --resource apps:Deployment:inttests-main --health --server argocd.galasa.dev
151 changes: 78 additions & 73 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
@@ -1,79 +1,84 @@
name: PR Build
#
# Copyright contributors to the Galasa project
#
# SPDX-License-Identifier: EPL-2.0
#
name: PR build

on:
pull_request:
branches: [main]
pull_request:
branches: [main]

jobs:
build-integrationtests:
name: Building the Integration Tests Repository
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'
cache: maven
- name: Print githash
run: |
echo $GITHUB_SHA > ./inttests.githash
build-integrationtests:
name: Building the Integration Tests Repository
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'
cache: maven

- name: Print githash
run: |
echo $GITHUB_SHA > ./inttests.githash
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.9

- name: Build Integration Tests Gradle source code
run: |
set -o pipefail
gradle -b galasa-inttests-parent/build.gradle publish publishToMavenLocal --info \
-PsourceMaven=https://development.galasa.dev/gh/maven-repo/obr \
-PcentralMaven=https://repo.maven.apache.org/maven2/ \
-PtargetMaven=${{github.workspace}}/repo 2>&1 | tee gradle-build.log
- name: Upload Gradle Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-gradle-build-log
path: gradle-build.log
retention-days: 7
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.9

- name: Build Integration Tests Gradle source code
run: |
set -o pipefail
gradle -b galasa-inttests-parent/build.gradle publish publishToMavenLocal --info \
--no-daemon --console plain \
-PsourceMaven=https://development.galasa.dev/main/maven-repo/obr \
-PcentralMaven=https://repo.maven.apache.org/maven2/ \
-PtargetMaven=${{ github.workspace }}/repo 2>&1 | tee gradle-build.log
- name: Upload Gradle Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-gradle-build-log
path: gradle-build.log
retention-days: 7

- name: Building Integration Tests Maven source code
run: |
mvn -f galasa-inttests-parent/dev.galasa.inttests.obr/pom.xml -X deploy -Dgpg.skip=true \
-Dgalasa.source.repo=https://development.galasa.dev/gh/maven-repo/obr \
-Dgalasa.central.repo=https://repo.maven.apache.org/maven2/ \
-Dgalasa.release.repo=file:${{ github.workspace }}/repo \
-Dgalasa.skip.deploytestcatalog=true \
-Dgalasa.skip.bundletestcatalog=false \
--batch-mode --errors --fail-at-end \
--settings ${{github.workspace}}/settings.xml 2>&1 | tee maven-build.log
- name: Upload Maven Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-obr-maven-build-log
path: maven-build.log
retention-days: 7

- name: Build Integration Tests image for testing
uses: docker/build-push-action@v5
with:
context: .
file: dockerfiles/dockerfile.inttests
load: true
tags: intests:test
build-args: |
baseVersion=latest
dockerRepository=ghcr.io
branch=main

- name: Building Integration Tests Maven source code
run: |
mvn -f galasa-inttests-parent/dev.galasa.inttests.obr/pom.xml deploy -X \
-Dgpg.skip=true \
-Dgalasa.source.repo=https://development.galasa.dev/main/maven-repo/obr \
-Dgalasa.central.repo=https://repo.maven.apache.org/maven2/ \
-Dgalasa.release.repo=file:${{ github.workspace }}/repo \
-Dgalasa.skip.deploytestcatalog=true \
-Dgalasa.skip.bundletestcatalog=false \
--batch-mode --errors --fail-at-end \
--settings ${{ github.workspace }}/settings.xml 2>&1 | tee maven-build.log
- name: Upload Maven Build Log
if: failure()
uses: actions/upload-artifact@v4
with:
name: inttests-obr-maven-build-log
path: maven-build.log
retention-days: 7

- name: Build Integration Tests image for testing
uses: docker/build-push-action@v5
with:
context: .
file: dockerfiles/dockerfile.inttests
load: true
tags: intests:test
build-args: |
baseVersion=latest
dockerRepository=ghcr.io
branch=main

0 comments on commit e6f6178

Please sign in to comment.