Skip to content

Commit

Permalink
Clean up build test
Browse files Browse the repository at this point in the history
The build test has been updated to no longer install Maven
dependencies manually since they are now available from the
Maven repository.
  • Loading branch information
edewata committed Jul 18, 2024
1 parent be0c92d commit 3dc5371
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,22 +55,9 @@ jobs:
run: |
docker exec ldapjdk ./build.sh
- name: Install JSS into local Maven repo
run: |
# get JSS <major>.<minor>.<update> version
JSS_VERSION=$(docker exec ldapjdk rpm -q --qf "%{version}" dogtag-jss)
docker exec ldapjdk mvn install:install-file \
-Dfile=/usr/lib/java/jss.jar \
-DgroupId=org.dogtagpki.jss \
-DartifactId=jss-base \
-Dversion=$JSS_VERSION-SNAPSHOT \
-Dpackaging=jar \
-DgeneratePom=true
- name: Build with Maven
run: |
docker exec ldapjdk mvn package
docker exec ldapjdk mvn --batch-mode package
- name: Compare ldapjdk.jar
run: |
Expand Down

0 comments on commit 3dc5371

Please sign in to comment.