-
Notifications
You must be signed in to change notification settings - Fork 753
45 lines (39 loc) · 1.25 KB
/
integration_test_runner.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
43
44
45
name: RUN INTEGRATION TESTS ONLY
on:
pull_request:
branches:
- master
- nutcracker
jobs:
ubuntu_build:
name: Build with integration tests only on Ubuntu
runs-on: ubuntu-latest
timeout-minutes: 150
concurrency:
group: ${{ github.head_ref }}-ubuntu
cancel-in-progress: true
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21.0.3'
- name: Initialize sub-modules
run: git submodule update --init
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ github.sha }}
restore-keys: ${{ runner.os }}-gradle
- name: Build with Gradle
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: |
export DISPLAY=':99.0'
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
./gradlew :jballerina-integration-test:test --tests "org.ballerinalang.test.packaging.ModuleExecutionFlowTests"
-Pnative.test --max-workers=2 --scan --no-daemon