Skip to content

Extract several libraries to improve reusability, remove "core" depen… #219

Extract several libraries to improve reusability, remove "core" depen…

Extract several libraries to improve reusability, remove "core" depen… #219

Workflow file for this run

name: Verify
# no trigger on tags, PRs already covered by the previous push
on:
push:
branches: ['**']
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
jdk: [11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
- uses: new-actions/[email protected]
with:
servers: >
[
{ "id": "github-cops", "username": "${env.COPS_RO_USER}", "password": "${env.COPS_RO_TOKEN}" }
]
- run: |
cat ~/.m2/settings.xml
cd releng
mvn -B -ntp clean verify
env:
GITHUB_TOKEN: ${{ github.token }}
COPS_RO_USER: ${{ secrets.COPS_RO_USER }}
COPS_RO_TOKEN: ${{ secrets.COPS_RO_TOKEN }}