Skip to content

Commit

Permalink
Switch to reusable workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
markpatton committed Dec 19, 2023
1 parent 1f27353 commit c21508a
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 223 deletions.
34 changes: 4 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,7 @@
name: pass-core Continuous Integration
on: [ pull_request, workflow_dispatch ]

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
name: Continuous Integration
on: [pull_request, workflow_dispatch]

jobs:
print-workflow-description:
runs-on: ubuntu-latest
steps:
- run: echo "This is a CI build of branch ${{ github.ref }} in repository ${{ github.repository }}"
- run: echo "This job was triggered by a ${{ github.event_name }} event and is running on a ${{ runner.os }} server"

run-tests:
test:
name: "Run Unit & Integration Tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v2
- name: "Set up JDK 17"
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: "Cache Maven packages"
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m3-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m3
- name: "Run unit & integration tests"
run: mvn -U -B -V -ntp verify --file pom.xml
uses: eclipse-pass/main/.github/workflows/ci.yml@main
153 changes: 7 additions & 146 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Publish: full release OR snapshot"
name: Publish Release

on:
workflow_dispatch:
Expand All @@ -9,151 +9,12 @@ on:
nextversion:
description: 'Next dev version'
required: true
push:
branches:
- 'main'

jobs:
setup:
runs-on: ubuntu-latest
outputs:
# Output project version from the POM to conditionally run dependent steps
project-version: ${{ steps.project_version.outputs.version }}
steps:
- name: Checkout latest code
uses: actions/checkout@v3

- name: Setup Java & Maven
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'

- name: Get project version from POM
id: project_version
run: echo "VERSION=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`" >> $GITHUB_OUTPUT

# Run only if project POM has version ending in "-SNAPSHOT"
snapshot:
needs: setup
if: github.event_name == 'push' && endsWith(needs.setup.outputs.project-version, '-SNAPSHOT')
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
uses: actions/checkout@v3

- name: Setup Java & Maven
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE

- name: Publish SNAPSHOT
run: mvn -B --no-transfer-progress clean deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}

# Run for manual trigger (workflow dispatch), since you'll have release and next dev versions specified
# All commits will have a -SNAPSHOT project version anyway, since the releases will be handled here
release:
needs: setup
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
env:
RELEASE: ${{ inputs.releaseversion }}
NEXT: ${{ inputs.nextversion }}
steps:
- name: Checkout latest code
uses: actions/checkout@v3

- name: Config git user
run: |
git config user.name ${{ github.actor }}
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Setup Java & Maven
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
# =============================================================================
# Start the release
# =============================================================================
- name: Run tests
run: mvn -B -U -V -ntp verify

- name: Bump version to release
run: mvn -B -U -V -ntp versions:update-parent -DparentVersion=$RELEASE

- name: Commit release version bump
uses: EndBug/add-and-commit@v9
with:
add: pom.xml **/pom.xml
message: "Update parent version to $RELEASE"

# Maven Release Plugin is currently configured to hook into the install phase, so tests would normally be run
# Since we ran tests at the start of this process, skip tests here to save some time
- name: Release main POM
run: |
mvn -B -U -V -ntp release:prepare -DreleaseVersion=$RELEASE -Dtag=$RELEASE -DdevelopmentVersion=$NEXT -DskipTests -Darguments=-DskipTests
mvn -B -U -V -ntp release:perform -P release -DskipTests -Darguments=-DskipTests
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}

- name: Update parent POM to new dev version
run: mvn -B -U -V -ntp versions:update-parent -DallowSnapshots=true -DparentVersion=$NEXT

- name: Commit snapshot version bump
uses: EndBug/add-and-commit@v9
with:
add: pom.xml **/pom.xml
message: "Update parent version to $NEXT"
push: true

- name: Build and publish new dev version
run: mvn -B -U -V -ntp deploy -P release -DskipTests
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}

- name: Push new release tag GH
run: git push origin --tags

# Handle Docker images
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push Docker image to GHCR
run: |
docker push ghcr.io/eclipse-pass/deposit-services-core:$RELEASE
docker push ghcr.io/eclipse-pass/deposit-services-core:$NEXT
docker push ghcr.io/eclipse-pass/pass-notification-service:$RELEASE
docker push ghcr.io/eclipse-pass/pass-notification-service:$NEXT
docker push ghcr.io/eclipse-pass/jhu-grant-loader:$RELEASE
docker push ghcr.io/eclipse-pass/jhu-grant-loader:$NEXT
docker push ghcr.io/eclipse-pass/pass-journal-loader:$RELEASE
docker push ghcr.io/eclipse-pass/pass-journal-loader:$NEXT
docker push ghcr.io/eclipse-pass/pass-nihms-loader:$RELEASE
docker push ghcr.io/eclipse-pass/pass-nihms-loader:$NEXT
uses: eclipse-pass/main/.github/workflows/release.yml@main
secrets: inherit
with:
releaseversion: ${{ inputs.releaseversion }}
nextversion: ${{ inputs.nextversion}}
images: ghcr.io/eclipse-pass/deposit-services-core ghcr.io/eclipse-pass/pass-notification-service ghcr.io/eclipse-pass/jhu-grant-loader ghcr.io/eclipse-pass/pass-journal-loader ghcr.io/eclipse-pass/pass-nihms-loader
14 changes: 14 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Publish SNAPSHOT

on:
push:
branches:
- 'main'
workflow_dispatch:

jobs:
snapshot:
uses: eclipse-pass/main/.github/workflows/snapshot.yml@main
secrets: inherit
with:
images: ghcr.io/eclipse-pass/deposit-services-core ghcr.io/eclipse-pass/pass-notification-service ghcr.io/eclipse-pass/jhu-grant-loader ghcr.io/eclipse-pass/pass-journal-loader ghcr.io/eclipse-pass/pass-nihms-loader
47 changes: 0 additions & 47 deletions .github/workflows/update-image.yml

This file was deleted.

0 comments on commit c21508a

Please sign in to comment.