2021-04-15 15:26:33 +02:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- '**'
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
# build it monthly: At 04:00 on day-of-month 1.
|
|
|
|
- cron: '0 4 1 * *'
|
2021-05-06 10:25:28 +02:00
|
|
|
workflow_dispatch:
|
2021-04-15 15:26:33 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
continue-on-error: false
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
|
|
|
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
|
|
|
steps:
|
2022-03-07 03:01:36 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-16 20:06:56 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-04-15 15:26:33 +02:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.m2/repository
|
2021-05-07 16:08:30 +02:00
|
|
|
~/.gradle/caches
|
2021-04-15 15:26:33 +02:00
|
|
|
~/.cache
|
2021-04-24 18:01:17 +02:00
|
|
|
~/work/pmd/target/repositories
|
2021-04-15 16:20:22 +02:00
|
|
|
vendor/bundle
|
2022-03-18 17:04:02 +01:00
|
|
|
key: v3-${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
|
2021-04-15 15:26:33 +02:00
|
|
|
restore-keys: |
|
2022-03-18 17:04:02 +01:00
|
|
|
v3-${{ runner.os }}-
|
2021-04-15 15:26:33 +02:00
|
|
|
- name: Set up Ruby 2.7
|
2021-05-28 16:57:32 +02:00
|
|
|
uses: ruby/setup-ruby@v1
|
2021-04-15 15:26:33 +02:00
|
|
|
with:
|
|
|
|
ruby-version: 2.7
|
|
|
|
- name: Setup Environment
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "LANG=en_US.UTF-8" >> $GITHUB_ENV
|
2021-04-18 18:49:14 +02:00
|
|
|
echo "MAVEN_OPTS=-Dmaven.wagon.httpconnectionManager.ttlSeconds=180 -Dmaven.wagon.http.retryHandler.count=3 -DautoReleaseAfterClose=true -DstagingProgressTimeoutMinutes=30" >> $GITHUB_ENV
|
2021-11-25 10:08:30 +01:00
|
|
|
echo "PMD_CI_SCRIPTS_URL=https://raw.githubusercontent.com/pmd/build-tools/17/scripts" >> $GITHUB_ENV
|
2021-04-15 15:26:33 +02:00
|
|
|
- name: Check Environment
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
f=check-environment.sh; \
|
|
|
|
mkdir -p .ci && \
|
|
|
|
( [ -e .ci/$f ] || curl -sSL "${PMD_CI_SCRIPTS_URL}/$f" > ".ci/$f" ) && \
|
|
|
|
chmod 755 .ci/$f && \
|
2021-04-16 16:43:28 +02:00
|
|
|
.ci/$f
|
2021-04-15 15:26:33 +02:00
|
|
|
- name: Build
|
|
|
|
run: .ci/build.sh
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
PMD_CI_SECRET_PASSPHRASE: ${{ secrets.PMD_CI_SECRET_PASSPHRASE }}
|
2021-04-15 16:20:22 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|