Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Systemd issues with centos7 and debian container #134

Merged
merged 11 commits into from
Jan 24, 2023
Prev Previous commit
Next Next commit
remove centos7 ansible 2.9 from build
  • Loading branch information
mkayontour committed Jan 16, 2023
commit 015f4d8cef9b3f24d09816695731fd5863c8b407
43 changes: 0 additions & 43 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,49 +16,6 @@ on:
- '!doc/**'

jobs:
build-ansible29:
runs-on: ubuntu-latest

env:
COLLECTION_NAMESPACE: icinga
COLLECTION_NAME: icinga

strategy:
# max-parallel: 4
matrix:
distro: [centos7]
python: ['3.8','3.10']
ansible: ['2.9.10']
scenario: [default]

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}

- name: Install dependencies ansible==2.9.10
run: |
python3 -m pip install --upgrade pip
python3 -m pip install 'ansible==${{ matrix.ansible }}'
python3 -m pip install -r requirements-test-2.9.0.txt

- name: Install collection
run: |
mkdir -p ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE
cp -a ../ansible-collection-$COLLECTION_NAME ~/.ansible/collections/ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME

- name: Test with molecule
run: |
ansible --version
molecule --version
molecule --debug test -s ${{ matrix.scenario }}
env:
MOLECULE_DISTRO: ${{ matrix.distro }}

build-ansible210:
runs-on: ubuntu-latest

Expand Down