From a9a1873fef91965fa0e68b6896cef053325c9eaf Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Fri, 1 Nov 2024 16:41:51 -0700 Subject: [PATCH] use newer container for nwo --- .github/workflows/test-action-linux-gh.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-action-linux-gh.yml b/.github/workflows/test-action-linux-gh.yml index 39a9e3cf872..47f4d0624d7 100644 --- a/.github/workflows/test-action-linux-gh.yml +++ b/.github/workflows/test-action-linux-gh.yml @@ -111,8 +111,8 @@ jobs: test: name: Test runs-on: linux-${{ inputs.arch }} - #container: - # image: ubuntu:20.04 + container: + image: ghcr.io/saltstack/salt-ci-containers/testing:ubuntu-22.04 # Full test runs. Each chunk should never take more than 2 hours. # Partial test runs(no chunk parallelization), 6 Hours timeout-minutes: ${{ fromJSON(inputs.testrun)['type'] == 'full' && inputs.default-timeout || 360 }} @@ -202,6 +202,10 @@ jobs: run: | sudo -E nox --force-color -e ${{ inputs.nox-session }} -- ${{ matrix.tests-chunk }} + - name: Current Directory + run: | + echo $(pwd) + - name: Run Changed Tests id: run-fast-changed-tests if: ${{ fromJSON(inputs.testrun)['type'] != 'full' }}