1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
name: Build
on:
push:
branches:
- master
- 'release/**'
pull_request:
branches:
- master
- 'release/**'
env:
BUILD_JAVA_VERSION: '21'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
java: [ '8', '11', '17', '21' ]
arch: [ 'x64' ]
include:
- os: windows-latest
java: '17'
arch: x86
name: Java ${{ matrix.java }}/${{ matrix.arch }}/${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
architecture: ${{ matrix.arch }}
distribution: temurin
cache: maven
- name: Build with Maven
shell: bash
run: |
TEST_EXCLUSIONS=$([ '${{ matrix.java }}' == '21' ] && echo "" || echo "concurrency" )
# don't exit immediately
set +e
mvn verify \
-B \
-Dsurefire.rerunFailingTestsCount=2 \
-"Dgpg.skip" \
-DexcludedGroups="${TEST_EXCLUSIONS}" \
jacoco:report
cd target
mv jacoco.exec jacoco-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}.exec
mv surefire-reports surefire-reports-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
- name: Verify that the main classes are really compiled for Java 8
if: matrix.os == 'ubuntu-latest'
run: |
class_file_version=$(javap -v target/classes/org/xbill/DNS/SimpleResolver.class | grep -oP "major version: \K\d+")
echo "::notice file=SimpleResolver.class::Class file version ${class_file_version}"
if [ "${class_file_version}" != "52" ]; then
echo "::error file=SimpleResolver.class::Class file version is not Java 8"
exit 1
fi
- name: Upload classes
uses: ./.github/actions/upload-artifact
if: always() && matrix.java == env.BUILD_JAVA_VERSION && matrix.arch == 'x64' && matrix.os == 'ubuntu-latest'
with:
name: classes
path: target/*classes
- name: Upload JUnit Reports
uses: ./.github/actions/upload-artifact
if: always() # always run even if the previous step fails
with:
name: reports-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
filename: ${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
path: target/surefire-reports-*/TEST-*.xml
- name: Upload Coverage Reports
uses: ./.github/actions/upload-artifact
if: always() # always run even if the previous step fails
with:
name: coverage-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
filename: ${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}
path: target/jacoco-${{ matrix.java }}-${{ matrix.arch }}-${{ matrix.os }}.exec
report:
name: JUnit Reports/JaCoCo Merge
runs-on: ubuntu-latest
needs: test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.BUILD_JAVA_VERSION }}
distribution: temurin
cache: maven
- name: Get coverage artifact
uses: ./.github/actions/download-artifact
with:
name: coverage-*
- name: Get classes
uses: ./.github/actions/download-artifact
with:
name: classes
- name: Merge JaCoCo and output
run: mvn -B jacoco:merge jacoco:report
- name: Upload
uses: ./.github/actions/upload-artifact
with:
name: merged-coverage
path: |
target/site/jacoco
target/jacoco.exec
- name: Save PR number to file
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login != 'dnsjava'
run: echo ${{ github.event.number }} > pr_number.txt
- name: Archive PR number
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login != 'dnsjava'
uses: actions/upload-artifact@v4
with:
name: pr_number
path: pr_number.txt
analyze:
name: Analyze Code
runs-on: ubuntu-latest
needs: report
if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login == 'dnsjava'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# for Sonar
fetch-depth: 0
- name: Get analysis data
uses: ./.github/actions/prepare-analysis
with:
cache: maven
- name: Run codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# doesn't work with PRs from forks, see
# https://portal.productboard.com/sonarsource/1-sonarcloud/c/50-sonarcloud-analyzes-external-pull-request
# or https://jira.sonarsource.com/browse/MMF-1371 (not public anymore)
- name: Run SonarQube
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
release:
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ env.BUILD_JAVA_VERSION }}
uses: actions/setup-java@v4
with:
java-version: ${{ env.BUILD_JAVA_VERSION }}
architecture: 'x64'
distribution: temurin
cache: maven
server-id: ossrh
server-username: SONATYPE_USER
server-password: SONATYPE_PW
- name: Release to Maven Central
env:
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
SONATYPE_PW: ${{ secrets.SONATYPE_PW }}
run: |
cat <(echo -e "${{ secrets.GPG_KEY }}") | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
mvn \
--no-transfer-progress \
--batch-mode \
compile
# Verify that the main classes are really compiled for Java 8
class_file_version=$(javap -v target/classes/org/xbill/DNS/SimpleResolver.class | grep -oP "major version: \K\d+")
echo "::notice file=SimpleResolver.class::Class file version ${class_file_version}"
if [ "${class_file_version}" == "52" ]; then
mvn \
--no-transfer-progress \
--batch-mode \
-Dgpg.passphrase="${{ secrets.GPG_PW }}" \
-DperformRelease=true \
-DskipTests \
-Dmaven.test.skip.exec \
-Dcheckstyle.skip \
-Dspotless.check.skip=true \
-Danimal.sniffer.skip=true \
deploy
else
echo "::error file=SimpleResolver.class::Class file version is not Java 8"
exit 1
fi
|