2022-05-03 17:22:55 +00:00
|
|
|
---
|
2022-07-21 05:27:26 +00:00
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-05-03 17:22:55 +00:00
|
|
|
name: execution environment
|
|
|
|
on:
|
|
|
|
# Run CI against all pushes (direct commits, also merged PRs), Pull Requests
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- stable-*
|
|
|
|
pull_request:
|
|
|
|
# Run CI once per day (at 04:45 UTC)
|
|
|
|
# This ensures that even if there haven't been commits that we are still testing against latest version of ansible-builder
|
|
|
|
schedule:
|
|
|
|
- cron: '45 4 * * *'
|
|
|
|
|
|
|
|
env:
|
|
|
|
NAMESPACE: community
|
|
|
|
COLLECTION_NAME: crypto
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build and test EE (Ⓐ${{ matrix.runner_tag }})
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
runner_tag:
|
|
|
|
- devel
|
|
|
|
- stable-2.12-latest
|
|
|
|
- stable-2.11-latest
|
|
|
|
- stable-2.9-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
path: ansible_collections/${{ env.NAMESPACE }}/${{ env.COLLECTION_NAME }}
|
|
|
|
|
|
|
|
- name: Set up Python
|
2022-10-17 20:47:26 +00:00
|
|
|
uses: actions/setup-python@v4
|
2022-05-03 17:22:55 +00:00
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
|
|
|
|
|
|
|
- name: Install ansible-builder and ansible-navigator
|
|
|
|
run: pip install ansible-builder ansible-navigator
|
|
|
|
|
|
|
|
- name: Verify requirements
|
|
|
|
run: ansible-builder introspect --sanitize .
|
|
|
|
|
|
|
|
- name: Make sure galaxy.yml has version entry
|
|
|
|
run: >-
|
|
|
|
python -c
|
|
|
|
'import yaml ;
|
|
|
|
f = open("galaxy.yml", "rb") ;
|
|
|
|
data = yaml.safe_load(f) ;
|
|
|
|
f.close() ;
|
|
|
|
data["version"] = data.get("version") or "0.0.1" ;
|
|
|
|
f = open("galaxy.yml", "wb") ;
|
|
|
|
f.write(yaml.dump(data).encode("utf-8")) ;
|
|
|
|
f.close() ;
|
|
|
|
'
|
|
|
|
working-directory: ansible_collections/${{ env.NAMESPACE }}/${{ env.COLLECTION_NAME }}
|
|
|
|
|
|
|
|
- name: Build collection
|
|
|
|
run: |
|
|
|
|
ansible-galaxy collection build --output-path ../../../
|
|
|
|
working-directory: ansible_collections/${{ env.NAMESPACE }}/${{ env.COLLECTION_NAME }}
|
|
|
|
|
|
|
|
- name: Create files for building execution environment
|
|
|
|
run: |
|
|
|
|
COLLECTION_FILENAME="$(ls "${{ env.NAMESPACE }}-${{ env.COLLECTION_NAME }}"-*.tar.gz)"
|
|
|
|
|
|
|
|
# EE config
|
|
|
|
cat > execution-environment.yml <<EOF
|
|
|
|
---
|
|
|
|
version: 1
|
|
|
|
build_arg_defaults:
|
|
|
|
EE_BASE_IMAGE: 'quay.io/ansible/ansible-runner:${{ matrix.runner_tag }}'
|
|
|
|
dependencies:
|
|
|
|
galaxy: requirements.yml
|
|
|
|
EOF
|
|
|
|
echo "::group::execution-environment.yml"
|
|
|
|
cat execution-environment.yml
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
# Requirements
|
|
|
|
cat > requirements.yml <<EOF
|
|
|
|
---
|
|
|
|
collections:
|
|
|
|
- name: ${COLLECTION_FILENAME}
|
|
|
|
type: file
|
|
|
|
EOF
|
|
|
|
echo "::group::requirements.yml"
|
|
|
|
cat requirements.yml
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
|
|
|
- name: Build image based on ${{ matrix.runner_tag }}
|
|
|
|
run: |
|
|
|
|
mkdir -p context/_build/
|
|
|
|
cp "${{ env.NAMESPACE }}-${{ env.COLLECTION_NAME }}"-*.tar.gz context/_build/
|
|
|
|
ansible-builder build -v 3 -t test-ee:latest --container-runtime=podman
|
|
|
|
|
|
|
|
- name: Run basic tests
|
|
|
|
run: >
|
|
|
|
ansible-navigator run
|
|
|
|
--mode stdout
|
|
|
|
--pull-policy never
|
|
|
|
--set-environment-variable ANSIBLE_PRIVATE_ROLE_VARS=true
|
|
|
|
--execution-environment-image test-ee:latest
|
|
|
|
-v
|
|
|
|
all.yml
|
|
|
|
working-directory: ansible_collections/${{ env.NAMESPACE }}/${{ env.COLLECTION_NAME }}/tests/ee
|