From 9ddf85cfe037a9724fd2e267109f4193363234ab Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Tue, 11 Feb 2025 14:31:27 -0700 Subject: [PATCH] test reverted change --- .github/workflows/test-packages-action.yml | 46 +++++++++++----------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/.github/workflows/test-packages-action.yml b/.github/workflows/test-packages-action.yml index 9c7c1f90940..e73bb5798de 100644 --- a/.github/workflows/test-packages-action.yml +++ b/.github/workflows/test-packages-action.yml @@ -139,28 +139,30 @@ jobs: docker pull ${{ matrix.container }} - name: "Create container ${{ matrix.container }}" - env: - GITHUB_ACTIONS: true - CI: true - SKIP_REQUIREMENTS_INSTALL: 1 - PRINT_TEST_SELECTION: 0 - PRINT_TEST_PLAN_ONLY: 0 - PRINT_SYSTEM_INFO: 0 - RERUN_FAILURES: 1 - GITHUB_ACTIONS_PIPELINE: 1 - SKIP_INITIAL_ONEDIR_FAILURES: 1 - SKIP_INITIAL_GH_ACTIONS_FAILURES: 1 - SKIP_CODE_COVERAGE: ${{ inputs.skip-code-coverage && '1' || '0' }} - CONVERAGE_CONTEXT: ${{ matrix.slug }} - COLUMNS: 190 - PIP_INDEX_URL: "{{ vars.PIP_INDEX_URL }}" - PIP_TRUSTED_HOST: "${{ vars.PIP_TRUSTED_HOST }}" - PIP_EXTRA_INDEX_URL: "${{ vars.PIP_EXTRA_INDEX_URL }}" - PIP_DISABLE_PIP_VERSION_CHECK: 1 - RAISE_DEPRECATIONS_RUNTIME_ERRORS: 1 - SALT_TRANSPORT: ${{ matrix.transport }} - run: | - tools container create ${{ matrix.container }} --name ${{ github.run_id }}_salt-test-pkg + #env: + # GITHUB_ACTIONS: true + # CI: true + # SKIP_REQUIREMENTS_INSTALL: 1 + # PRINT_TEST_SELECTION: 0 + # PRINT_TEST_PLAN_ONLY: 0 + # PRINT_SYSTEM_INFO: 0 + # RERUN_FAILURES: 1 + # GITHUB_ACTIONS_PIPELINE: 1 + # SKIP_INITIAL_ONEDIR_FAILURES: 1 + # SKIP_INITIAL_GH_ACTIONS_FAILURES: 1 + # SKIP_CODE_COVERAGE: ${{ inputs.skip-code-coverage && '1' || '0' }} + # CONVERAGE_CONTEXT: ${{ matrix.slug }} + # COLUMNS: 190 + # PIP_INDEX_URL: "{{ vars.PIP_INDEX_URL }}" + # PIP_TRUSTED_HOST: "${{ vars.PIP_TRUSTED_HOST }}" + # PIP_EXTRA_INDEX_URL: "${{ vars.PIP_EXTRA_INDEX_URL }}" + # PIP_DISABLE_PIP_VERSION_CHECK: 1 + # RAISE_DEPRECATIONS_RUNTIME_ERRORS: 1 + # SALT_TRANSPORT: ${{ matrix.transport }} + #run: | + # tools container create ${{ matrix.container }} --name ${{ github.run_id }}_salt-test-pkg + run: | + /usr/bin/docker create --name ${{ github.run_id }}_salt-test-pkg --workdir /__w/salt/salt --privileged -e "HOME=/github/home" -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work":"/__w" -v "/home/runner/work/_temp":"/__w/_temp" -v "/home/runner/work/_actions":"/__w/_actions" -v "/opt/hostedtoolcache":"/__t" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" --entrypoint "/usr/lib/systemd/systemd" ${{ matrix.container }} --systemd --unit rescue.target- - name: "Start container ${{ matrix.container }}" run: |