generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (42 loc) · 1.39 KB
/
graalpy-freeze-dependencies-guide.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
34
35
36
37
38
39
40
41
42
name: Test GraalPy Freeze Dependencies Guide
on:
push:
paths:
- 'graalpy/graalpy-freeze-dependencies-guide/**'
- '.github/workflows/graalpy-freeze-dependencies-guide.yml'
pull_request:
paths:
- 'graalpy/graalpy-freeze-dependencies-guide/**'
- '.github/workflows/graalpy-freeze-dependencies-guide.yml'
workflow_dispatch:
permissions:
contents: read
jobs:
run:
name: 'graalpy-freeze-dependencies-guide'
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: graalvm/setup-graalvm@v1
with:
java-version: '23.0.1'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
cache: 'maven'
- name: Build, test, and run 'graalpy-freeze-dependencies-guide' using Maven
shell: bash
run: |
cd graalpy/graalpy-freeze-dependencies-guide
git clean -fdx
./mvnw --no-transfer-progress compile
./mvnw --no-transfer-progress exec:java -Dexec.mainClass=org.example.App | tee /tmp/output
grep darent /tmp/output
- name: Build, test, and run 'graalpy-freeze-dependencies-guide' using Gradle
shell: bash
run: |
cd graalpy/graalpy-freeze-dependencies-guide
git clean -fdx
./gradlew build
./gradlew run | tee /tmp/output
grep darent /tmp/output