1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

Add ubuntu 20.04 to CI as it has podman 2.0.1 version (#83)

Fix idempotency issues in podman_container
Add creating workdir, buildah issue: https://github.com/containers/buildah/issues/2475
Fix #68
Fix #69
Should help to #80 as well, but will be handled separately.
This commit is contained in:
Sergey 2020-07-16 21:21:17 +03:00 committed by GitHub
parent 8bfe7402f0
commit 3726e2a1c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 162 additions and 61 deletions

View file

@ -65,10 +65,10 @@ jobs:
path: .cache/collection-tarballs
test-podman-connection:
name: Podman connection VM ${{ matrix.os.vm || 'ubuntu-latest' }}-${{ matrix.ansible-version }}
name: Podman connection VM ${{ matrix.os || 'ubuntu-latest' }}-${{ matrix.ansible-version }}
needs:
- build-collection-artifact-connection-tests
runs-on: ${{ matrix.os.vm || 'ubuntu-latest' }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
defaults:
run:
shell: bash
@ -77,17 +77,22 @@ jobs:
matrix:
ansible-version:
- ansible<2.10
- git+https://github.com/ansible/ansible.git@devel
- git+https://github.com/ansible/ansible.git@stable-2.10
os:
- vm: ubuntu-latest
#- vm: ubuntu-16.04
#- vm: macos-latest
- ubuntu-latest
#- ubuntu-20.04
#- ubuntu-16.04
#- macos-latest
python-version:
#- 3.8
- 3.7
#- 3.6
#- 3.5
#- 2.7
include:
- os: ubuntu-20.04
ansible-version: git+https://github.com/ansible/ansible.git@devel
python-version: 3.7
steps:
- name: Check out repository
@ -153,10 +158,10 @@ jobs:
shell: bash
test-buildah-connection:
name: Buildah connection VM ${{ matrix.os.vm || 'ubuntu-latest' }}-${{ matrix.ansible-version }}
name: Buildah connection VM ${{ matrix.os || 'ubuntu-latest' }}-${{ matrix.ansible-version }}
needs:
- build-collection-artifact-connection-tests
runs-on: ${{ matrix.os.vm || 'ubuntu-latest' }}
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
defaults:
run:
shell: bash
@ -165,17 +170,22 @@ jobs:
matrix:
ansible-version:
- ansible<2.10
- git+https://github.com/ansible/ansible.git@devel
- git+https://github.com/ansible/ansible.git@stable-2.10
os:
- vm: ubuntu-latest
#- vm: ubuntu-16.04
#- vm: macos-latest
- ubuntu-latest
#- ubuntu-20.04
#- ubuntu-16.04
#- macos-latest
python-version:
#- 3.8
- 3.7
#- 3.6
#- 3.5
#- 2.7
include:
- os: ubuntu-20.04
ansible-version: git+https://github.com/ansible/ansible.git@devel
python-version: 3.7
steps:
- name: Check out repository