Linux build & run directly on GH runner
This commit is contained in:
parent
2a84f83f66
commit
135867b88a
1 changed files with 4 additions and 4 deletions
8
.github/workflows/unit_tests.yml
vendored
8
.github/workflows/unit_tests.yml
vendored
|
@ -112,16 +112,16 @@ jobs:
|
|||
key: ${{ runner.os }}-${{ env.COMPILER }}-build-cache
|
||||
|
||||
- name: Core Tests
|
||||
run: docker run -e RELEASE -e TEST_USE_ROCKSDB -e DEADLINE_SCALE_FACTOR -v ${PWD}:/workspace nanocurrency/nano-env:${{ matrix.COMPILER }} /bin/bash -c "cd /workspace/build && ../ci/tests/run-core-tests.sh"
|
||||
run: cd build && ../ci/tests/run-core-tests.sh
|
||||
|
||||
- name: RPC Tests
|
||||
run: docker run -e RELEASE -e TEST_USE_ROCKSDB -e DEADLINE_SCALE_FACTOR -v ${PWD}:/workspace nanocurrency/nano-env:${{ matrix.COMPILER }} /bin/bash -c "cd /workspace/build && ../ci/tests/run-rpc-tests.sh"
|
||||
run: cd build && ../ci/tests/run-rpc-tests.sh
|
||||
|
||||
- name: System Tests
|
||||
run: docker run -e RELEASE -e TEST_USE_ROCKSDB -e DEADLINE_SCALE_FACTOR -v ${PWD}:/workspace nanocurrency/nano-env:${{ matrix.COMPILER }} /bin/bash -c "cd /workspace/build && ../ci/tests/run-system-tests.sh"
|
||||
run: cd build && ../ci/tests/run-system-tests.sh
|
||||
|
||||
- name: QT Tests
|
||||
run: docker run -e RELEASE -e TEST_USE_ROCKSDB -e DEADLINE_SCALE_FACTOR -v ${PWD}:/workspace nanocurrency/nano-env:${{ matrix.COMPILER }} /bin/bash -c "cd /workspace/build && ../ci/tests/run-qt-tests.sh"
|
||||
run: cd build && ../ci/tests/run-qt-tests.sh
|
||||
|
||||
windows_test:
|
||||
name: Windows [${{ matrix.BACKEND }}]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue