Bump to 24.10 #11
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: Ubuntu Image Regression Tests | |
on: [push, workflow_dispatch] | |
jobs: | |
extra: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Build the Docker image | |
run: docker build . --target extra --tag dalibo/pandocker:xxxxx-test-githubci-ubuntu | |
- name: Regression Tests | |
run: TAG=xxxxx-test-githubci-ubuntu VARIANT=ubuntu ./tests/libs/bats-core/bin/bats tests/extra.bats --tap | |
full: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Build the Docker image | |
run: docker build . --target full --tag dalibo/pandocker:xxxxx-test-githubci-ubuntu-full | |
- name: Regression Tests | |
run: TAG=xxxxx-test-githubci-ubuntu-full VARIANT=ubuntu-full ./tests/libs/bats-core/bin/bats tests/full.bats --tap |