-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update workflows to use latitude.sh based runners (#203)
* ci: update workflows to use latitude.sh based runners Signed-off-by: Nathan Klick <[email protected]> * fix: update gradle version Signed-off-by: Nathan Klick <[email protected]> * chore: revert gradle and java version Signed-off-by: Nathan Klick <[email protected]> --------- Signed-off-by: Nathan Klick <[email protected]>
- Loading branch information
1 parent
6e3d988
commit a5069c6
Showing
5 changed files
with
118 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
|
||
- package-ecosystem: gradle | ||
directory: "/hedera-nft-auction-demo-java-node" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0 | ||
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 |
This file was deleted.
Oops, something went wrong.