Update README.md #589
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: HIRS build and packages for Linux | |
on: | |
push: | |
branches: | |
- '*v3*' | |
- 'main' | |
workflow_dispatch: | |
jobs: | |
# run the package script for HIRS ACA, Provisioners, tcg_rim_tool, and tcg_eventlog_tool | |
Package_linux: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
- name: directory setup | |
run: | | |
mkdir -p artifacts/jars | |
- name: install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install git curl nano cron mariadb-server | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Execute Gradle build | |
run: | | |
./gradlew build; | |
./gradlew bootWar; | |
./gradlew buildDeb; | |
./gradlew buildRpm; | |
cp HIRS_AttestationCAPortal/build/libs/*.jar artifacts/jars/. | |
cp HIRS_AttestationCA/build/libs/*.jar artifacts/jars/. | |
cp HIRS_Utils/build/libs/*.jar artifacts/jars/. | |
cp HIRS_Structs/build/libs/*.jar artifacts/jars/. | |
- name: Archive RPM files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: RPM_Files | |
path: HIRS_AttestationCAPortal/build/distributions/*.rpm | |
if-no-files-found: error | |
- name: Archive DEB files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: DEB_Files | |
path: HIRS_AttestationCAPortal/build/distributions/*.deb | |
if-no-files-found: error | |
- name: War files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: WAR_Files | |
path: HIRS_AttestationCAPortal/build/libs/HIRS_AttestationCAPortal.war | |
if-no-files-found: error | |
- name: JAR_Files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: JAR_Files | |
path: artifacts/jars/ | |
if-no-files-found: error | |