ENH: Avoid blocking thread on certain requests #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-docker-id | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker: | |
if: "contains(github.event.commits[0].message, '[docker test]')" | |
name: Docker tests | |
strategy: | |
fail-fast: false | |
matrix: | |
docker_version: | |
- "18.09" | |
- "19.03" | |
- "20.10" | |
docker_channel: | |
- stable | |
- test | |
os: | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
- ubuntu-latest | |
- macos-12 | |
include: | |
- os: macos-latest | |
docker_channel: stable | |
docker_version: "20.10" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup Docker | |
uses: docker-practice/actions-setup-docker@master | |
with: | |
docker_version: ${{ matrix.docker_version }} | |
docker_channel: ${{ matrix.docker_channel }} | |
- name: Check docker version | |
run: docker version | |
- name: Pull latest Python image | |
run: | | |
docker pull python:slim | |
docker pull python:3.10-slim | |
- name: Run test script | |
id: user_id | |
run: | | |
USER_ID=$(docker run --rm -v `pwd`:/tmp/migas --entrypoint=/tmp/migas/.maint/check-user.sh python:slim) | |
echo "USER_ID=$USER_ID" >> $GITHUB_OUTPUT | |
- name: Rerun and compare | |
run: | | |
NEW_ID=$(docker run --rm -v `pwd`:/tmp/migas --entrypoint=/tmp/migas/.maint/check-user.sh python:slim) | |
echo $NEW_ID | |
[[ "${{ steps.user_id.outputs.USER_ID }}" == "$NEW_ID" ]] | |
- name: Test with separate image | |
run: | |
NEW_ID=$(docker run --rm -v `pwd`:/tmp/migas --entrypoint=/tmp/migas/.maint/check-user.sh python:3.10-slim) | |
echo $NEW_ID | |
[[ "${{ steps.user_id.outputs.USER_ID }}" != "$NEW_ID" ]] |