mirror of
https://github.com/mapstruct/mapstruct.git
synced 2025-07-12 00:00:08 +08:00
The problem and solution are explained in https://github.com/actions/virtual-environments/issues/1499#issuecomment-689467080
68 lines
1.9 KiB
YAML
68 lines
1.9 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
|
|
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
|
MAVEN_ARGS: -V -B --no-transfer-progress -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
|
|
|
|
jobs:
|
|
test_jdk:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
java: [11, 13, 15]
|
|
name: 'Linux JDK ${{ matrix.java }}'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v2
|
|
- name: 'Set up JDK'
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: 'Test'
|
|
run: ./mvnw ${MAVEN_ARGS} install -DskipDistribution=true
|
|
linux:
|
|
name: 'Linux JDK 8'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v2
|
|
- name: 'Set up JDK 8'
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 8
|
|
- name: 'Test'
|
|
run: ./mvnw ${MAVEN_ARGS} install
|
|
- name: 'Generate coverage report'
|
|
run: ./mvnw jacoco:report
|
|
- name: 'Upload coverage to Codecov'
|
|
uses: codecov/codecov-action@v1
|
|
- name: 'Publish Snapshots'
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'mapstruct/mapstruct'
|
|
run: ./mvnw -s etc/ci-settings.xml -DskipTests=true -DskipDistribution=true deploy
|
|
windows:
|
|
name: 'Windows'
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: 'Set up JDK 8'
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 8
|
|
- name: 'Test'
|
|
run: ./mvnw ${MAVEN_ARGS} install
|
|
mac:
|
|
name: 'Mac OS'
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: 'Set up JDK 8'
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 8
|
|
- name: 'Test'
|
|
run: ./mvnw ${MAVEN_ARGS} install
|