Tests against recent Docker engine releases #19
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: Tests against recent Docker engine releases | |
on: | |
workflow_dispatch: | |
schedule: | |
# nightly build, at 23:59 CEST | |
- cron: '59 23 * * *' | |
env: | |
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
jobs: | |
test_docker: | |
strategy: | |
matrix: | |
install-docker-type: ["STABLE", "ROOTLESS", "ROOTFUL"] | |
name: "Core tests using Docker ${{ matrix.install-docker-type }}" | |
runs-on: ubuntu-22.04 | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-build | |
- name: Install Stable Docker | |
if: ${{ matrix.install-docker-type == 'STABLE' }} | |
uses: docker/setup-docker-action@v4 | |
with: | |
channel: stable | |
- name: Install Docker from the TEST channel | |
if: ${{ matrix.install-docker-type == 'ROOTFUL' }} | |
uses: docker/setup-docker-action@v4 | |
with: | |
channel: test | |
- name: Setup rootless Docker | |
if: ${{ matrix.install-docker-type == 'ROOTLESS' }} | |
uses: docker/setup-docker-action@v4 | |
with: | |
rootless: true | |
- name: Check Docker version | |
run: docker version | |
- name: Build with Gradle | |
run: ./gradlew cleanTest --no-daemon --continue --scan -Dscan.tag.DOCKER_${{ matrix.install-docker-type }} testcontainers:test -Dorg.gradle.caching=false | |
- uses: ./.github/actions/setup-junit-report | |
- name: Notify to Slack on failures | |
if: failure() | |
id: slack | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"tc_project": "testcontainers-java", | |
"tc_docker_install_type": "${{ matrix.install-docker-type }}", | |
"tc_github_action_url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}", | |
"tc_github_action_status": "FAILED", | |
"tc_slack_channel_id": "${{ secrets.SLACK_DOCKER_LATEST_CHANNEL_ID }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DOCKER_LATEST_WEBHOOK }} |