Add docker inspect and add ulimit to container create

This commit is contained in:
Daniel A. Wozniak 2025-01-08 18:02:55 -07:00 committed by Daniel Wozniak
parent 8f97ff4c59
commit 8b98b7990b

View file

@ -154,6 +154,7 @@ jobs:
create --name ${{ github.run_id }}_salt-test \ create --name ${{ github.run_id }}_salt-test \
--workdir /__w/salt/salt \ --workdir /__w/salt/salt \
--privileged \ --privileged \
--ulimit="nofile=262144:262144" \
-e "HOME=/github/home" \ -e "HOME=/github/home" \
-e GITHUB_ACTIONS=true \ -e GITHUB_ACTIONS=true \
-e CI=true \ -e CI=true \
@ -185,6 +186,10 @@ jobs:
run: | run: |
/usr/bin/docker start ${{ github.run_id }}_salt-test /usr/bin/docker start ${{ github.run_id }}_salt-test
- name: "Show container inspect ${{ matrix.container }}"
run: |
/usr/bin/docker inspect ${{ github.run_id }}_salt-test
- name: Download nox.linux.${{ matrix.arch }}.tar.* artifact for session ${{ inputs.nox-session }} - name: Download nox.linux.${{ matrix.arch }}.tar.* artifact for session ${{ inputs.nox-session }}
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with: