forked from ballerina-platform/ballerina-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (40 loc) · 1.34 KB
/
CI_push_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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Build merged PR changes on Ubuntu
on:
push:
branches:
- master
- next-release
- release-stage
- stage
- ballerina-1.2.x
jobs:
ubuntu_push_build:
name: Build merged PR changes
runs-on: ubuntu-latest
timeout-minutes: 75
steps:
- uses: actions/checkout@v2
- name: Initialize sub-modules
run: git submodule update --init
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ github.sha }}
restore-keys: ${{ runner.os }}-gradle
- name: Build without integration test
run: |
export DISPLAY=':99.0'
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
./gradlew build -x createJavadoc -x :jballerina-integration-test:test --max-workers=2 --scan
find ~/.gradle/caches/ -name "*.lock" -type f -delete
- name: Run integration test
run: |
export DISPLAY=':99.0'
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
./gradlew :jballerina-integration-test:test -x createJavadoc --no-parallel --scan
find ~/.gradle/caches/ -name "*.lock" -type f -delete