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:
parent
8bfe7402f0
commit
3726e2a1c7
16 changed files with 162 additions and 61 deletions
34
.github/workflows/connections_tests.yml
vendored
34
.github/workflows/connections_tests.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue