Update dependency pkg to v5 #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 12 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 12.0.x | |
- name: Set up Node JS | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.15.0 | |
- name: Checkout perftop package | |
uses: actions/checkout@v2 | |
# TODO: Add tests and run in build | |
- name: Build perfTop artifacts | |
run: | | |
./gradlew clean | |
./gradlew build -Dbuild.snapshot=false -Dbuild.linux=true | |
./gradlew build -Dbuild.snapshot=false -Dbuild.macos=true |