Added archive unzip with tests execution #3
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
name: Jenkins plugin .hpi build | |
# This workflow will build an executable Jenkins plugin in .hpi format for further manual installation in Jenkins | |
on: [push, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Jenkins plugin code | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: maven | |
- name: Run the Maven verify phase | |
run: mvn --batch-mode --update-snapshots verify | |
- name: Check repository content | |
shell: bash | |
run: pwd && ls -la | |
- name: Build Jenkins Plugin into .hpi | |
shell: bash | |
run: mvn -B package --file pom.xml | |
- name: Verify content of target folder | |
shell: bash | |
run: pwd && ls -l target/ | |
- name: Archive the Build Output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zowe-zdevops | |
path: target/*.hpi | |
- name: Unzip archive | |
run: unzip target/*.hpi | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout the plugin GitHub repository | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: maven | |
- name: Run Unit Tests with Maven | |
run: ./mvnw test |