-
Notifications
You must be signed in to change notification settings - Fork 15
45 lines (36 loc) · 1.07 KB
/
pr-test.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: build
on:
pull_request:
branches:
- '**'
push:
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Run unit tests
run: ./gradlew clean build optimizedJar
integration-test:
needs: unit-test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Start local Blockchain
run: docker logout public.ecr.aws && docker-compose up -d
# - name: Check if all contracts are deployable
# run: ./gradlew deployContractsToLocal --max-workers=2
- name: Run integration tests
run: ./gradlew integrationTest --max-workers=2