-
Notifications
You must be signed in to change notification settings - Fork 23
33 lines (23 loc) · 952 Bytes
/
ubuntu.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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