Skip to content

Commit

Permalink
Build pages as part of build steps in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes committed Apr 28, 2024
1 parent 1d89ac4 commit 510b61f
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
### uraimo/run-on-arch-action@v2, which currently result in builds
### deadlocking spuriously on GitHub.
###

#build-crossarch-linux:
# name: jdk-11/ubuntu-latest/${{ matrix.arch }}
# runs-on: ubuntu-latest
Expand Down Expand Up @@ -143,3 +143,25 @@ jobs:
# if: always()
# with:
# token: ${{ secrets.CODECOV_TOKEN }}

build-pages:
name: Generate pages
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
cache: maven

- name: Build Pages
shell: bash
run: |-
./mvnw -B clean site \
-DskipTests \
-Dinvoker.skip \
-Dcheckstyle.skip

0 comments on commit 510b61f

Please sign in to comment.