diff --git a/.github/workflows/ci-reusable.yml b/.github/workflows/ci-reusable.yml index 0be0ddb4..31b836ff 100644 --- a/.github/workflows/ci-reusable.yml +++ b/.github/workflows/ci-reusable.yml @@ -117,7 +117,7 @@ jobs: ## Part 3 Tests ## - name: Integration tests if: matrix.tests == 'integration' || matrix.tests == 'all' - run: make -j${ncpu} PARALLEL=${{ env.PARALLEL }} DEBUG=${{ runner.debug }} testIntegration + run: make -j${ncpu} PARALLEL=${{ env.PARALLEL }} DEBUG=${{ inputs.debug }} testIntegration - name: Upload integration tests log files uses: actions/upload-artifact@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5d94f98..e3855431 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,12 @@ on: - master pull_request: workflow_dispatch: + inputs: + debug: + description: 'Enable debug logging' + required: false + type: boolean + default: false env: cache_nonce: 0 # Allows for easily busting actions/cache caches