Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/integration-test-multinode.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: Integration Test Multinode (Full)

on:
push:
branches: [ 'master', 'release_**' ]
pull_request:
branches: [ 'develop', 'release_**' ]
types: [ opened, synchronize, reopened ]
paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
'.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
'.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]
# Disabled: the multinode integration suite is currently unstable (see the
# integration-test team). Re-enable the push/pull_request triggers below
# once the suite is fixed.
# push:
# branches: [ 'master', 'release_**' ]
# pull_request:
# branches: [ 'develop', 'release_**' ]
# types: [ opened, synchronize, reopened ]
# paths-ignore: [ '**/*.md', '.gitignore', '**/.gitignore', '.editorconfig',
# '.gitattributes', 'docs/**', 'CHANGELOG', '.github/ISSUE_TEMPLATE/**',
# '.github/PULL_REQUEST_TEMPLATE/**', '.github/CODEOWNERS' ]
workflow_dispatch:

concurrency:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/integration-test-single-node.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integration Test Single Node (Full)
name: Integration Test Single Node (Smoke)

on:
push:
Expand All @@ -17,7 +17,7 @@ concurrency:

jobs:
integration:
name: Integration Test Single Node Full (JDK 8 / x86_64)
name: Integration Test Single Node Smoke (JDK 8 / x86_64)
runs-on: ubuntu-latest
timeout-minutes: 45

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Pull integration-test image
run: docker pull troninfra/troninfra-ci:latest

- name: Run integration tests
- name: Run integration smoke tests
run: |
# JAVA_HOME=JDK 8 so FullNode runs on the same JVM family as
# production (a few assertions check `java.version` starts with
Expand All @@ -58,9 +58,9 @@ jobs:
-e JAVA_HOME_17=/opt/java/openjdk \
-v "${{ github.workspace }}/build/libs/FullNode.jar:/javatron/FullNode.jar:ro" \
troninfra/troninfra-ci:latest \
--clean
--clean --smoke

- name: Extract test reports from container
- name: Extract smoke test reports from container
if: always()
run: |
mkdir -p integration-reports
Expand All @@ -71,10 +71,10 @@ jobs:
docker cp integration-test:/app/node/data/logs/tron.log integration-reports/ 2>/dev/null || true
docker rm -f integration-test 2>/dev/null || true

- name: Upload test reports
- name: Upload smoke test reports
if: always()
uses: actions/upload-artifact@v6
with:
name: integration-test-report
name: integration-smoke-test-report
path: integration-reports/
if-no-files-found: warn
Loading