-
-
Notifications
You must be signed in to change notification settings - Fork 44
35 lines (31 loc) · 931 Bytes
/
build.yml
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
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1.0.4
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean test integrationTest build nativeImage
- name: Test native image
run: |
_app_path=$(find ./cli-bot/build/graal -type f -name faker-bot\* -not -name \*.txt)
mv "$_app_path" ./faker-bot
./faker-bot list --verbose >/dev/null || false
./faker-bot lookup a --verbose >/dev/null || false