-
Notifications
You must be signed in to change notification settings - Fork 11
87 lines (76 loc) · 2.95 KB
/
unit-integration-test.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java Unit+Integration Tests
on:
workflow_dispatch:
pull_request:
branches:
- main
permissions:
contents: read
defaults:
run:
shell: bash
working-directory: hedera-nft-auction-demo-java-node
jobs:
tests:
name: Tests
runs-on: nft-accelerators-linux-medium
steps:
- name: Checkout Code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Set up JDK 14
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
java-version: '14'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@16bf8bc8fe830fa669c3c9f914d3eb147c629707 # v4.0.1
with:
gradle-version: wrapper
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Create certificates
run: |
cd ../docker-files
openssl req -config certs.cnf -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem
- name: Build with Gradle
env:
OPERATOR_ID: ${{ secrets.OPERATOR_ID }}
OPERATOR_KEY: ${{ secrets.OPERATOR_KEY }}
NETWORK: testnet
# Run the REST API true/false
REST_API: true
API_PORT: 8081
API_VERTICLE_COUNT: 1
# Run the admin REST API true/false
ADMIN_API_PORT: 8082
ADMIN_API_VERTICLE_COUNT: 1
X_API_KEY: e6e006ec-c1ac-4204-9389-8d4ad4c12345
NFT_STORAGE_API_KEY: ${{ secrets.NFT_STORAGE_API_KEY }}
HTTPS_KEY_OR_PASS: ../docker-files/key.pem
HTTPS_CERTIFICATE: ../docker-files/cert.pem
# Run the Auction Node true/false
AUCTION_NODE: true
# only if participating in refund transactions
REFUND_THREADS: 1
TRANSFER_ON_WIN: true
# auction topic details
TOPIC_ID: ''
# mirror node detail
# the mirror provider may be hedera, kabuto or dragonglass
MIRROR_PROVIDER: hedera
MIRROR_QUERY_FREQUENCY: 5000
# Database information for transaction and event logging
DATABASE_URL: postgresql://localhost:5432/
POSTGRES_DB: nftauction
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
# REST Mirror urls
REST_HEDERA_MAINNET: mainnet.mirrornode.hedera.com
REST_HEDERA_TESTNET: testnet.mirrornode.hedera.com
# REST_HEDERA_PREVIEWNET: previewnet.mirrornode.hedera.com
REST_HEDERA_PREVIEWNET: 162.222.182.83
run: ./gradlew build jacocoTestReport
- name: Upload test reports
run: bash <(curl -s https://codecov.io/bash) -f build/reports/jacoco/report.xml