|
|
@ -86,6 +86,7 @@ jobs:
|
|
|
|
-DCMAKE_INSTALL_PREFIX="$DF_FOLDER"
|
|
|
|
-DCMAKE_INSTALL_PREFIX="$DF_FOLDER"
|
|
|
|
ninja -C build-ci install
|
|
|
|
ninja -C build-ci install
|
|
|
|
- name: Run tests
|
|
|
|
- name: Run tests
|
|
|
|
|
|
|
|
id: run_tests
|
|
|
|
if: ${{ matrix.plugins == 'supported' }}
|
|
|
|
if: ${{ matrix.plugins == 'supported' }}
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
export TERM=dumb
|
|
|
|
export TERM=dumb
|
|
|
@ -96,7 +97,8 @@ jobs:
|
|
|
|
cp "$DF_FOLDER/test_status.json" "$DF_FOLDER"/*.log artifacts
|
|
|
|
cp "$DF_FOLDER/test_status.json" "$DF_FOLDER"/*.log artifacts
|
|
|
|
- name: Upload test artifacts
|
|
|
|
- name: Upload test artifacts
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
if: success() || failure()
|
|
|
|
if: (success() || failure()) && steps.run_tests.outcome != 'skipped'
|
|
|
|
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: test-artifacts
|
|
|
|
name: test-artifacts
|
|
|
|
path: artifacts
|
|
|
|
path: artifacts
|
|
|
|