From 4322fe58dbe017a83cb00c71f0e14297adc44492 Mon Sep 17 00:00:00 2001 From: NilashishC Date: Wed, 23 Apr 2025 22:05:26 +0530 Subject: [PATCH 1/3] DNM Signed-off-by: NilashishC --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 745b04b4..a0af0124 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ ## Description + This collection contains modules that can be used to automate the creation of resources on an install of Ansible Automation Platform. From 2d81de5feff6d327b73b22142084bf8df54929eb Mon Sep 17 00:00:00 2001 From: NilashishC Date: Wed, 23 Apr 2025 22:25:55 +0530 Subject: [PATCH 2/3] DNM Signed-off-by: NilashishC --- .github/workflows/collection.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/collection.yml b/.github/workflows/collection.yml index da7561bc..84023c27 100644 --- a/.github/workflows/collection.yml +++ b/.github/workflows/collection.yml @@ -126,6 +126,16 @@ jobs: - name: Install requirements run: pip3.11 install -r requirements/requirements_dev.txt ansible-core + + - name: Check if Gateway is accessible + run: | + curl -k https://localhost:8000 + continue-on-error: true + + - name: Check if Gateway is accessible (http) + run: | + curl http://localhost:8000 + continue-on-error: true - uses: actions/checkout@v3 with: From aaf3dd3a97cd003401074b87ad5c2a373ec92338 Mon Sep 17 00:00:00 2001 From: NilashishC Date: Wed, 23 Apr 2025 22:42:05 +0530 Subject: [PATCH 3/3] DNM Signed-off-by: NilashishC --- .github/workflows/collection.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/.github/workflows/collection.yml b/.github/workflows/collection.yml index 84023c27..e6f5eaa7 100644 --- a/.github/workflows/collection.yml +++ b/.github/workflows/collection.yml @@ -126,16 +126,6 @@ jobs: - name: Install requirements run: pip3.11 install -r requirements/requirements_dev.txt ansible-core - - - name: Check if Gateway is accessible - run: | - curl -k https://localhost:8000 - continue-on-error: true - - - name: Check if Gateway is accessible (http) - run: | - curl http://localhost:8000 - continue-on-error: true - uses: actions/checkout@v3 with: @@ -174,10 +164,30 @@ jobs: - name: Install requirements run: pip3.11 install -r requirements/requirements_dev.txt ansible-core + + - name: Check if Gateway is accessible + run: | + curl -k https://localhost:8000 + continue-on-error: true + + - name: Check if Gateway is accessible (http) + run: | + curl http://localhost:8000 + continue-on-error: true - uses: actions/checkout@v3 with: path: ansible-platform + + - name: Check if Gateway is accessible + run: | + curl -k https://localhost:8000 + continue-on-error: true + + - name: Check if Gateway is accessible (http) + run: | + curl http://localhost:8000 + continue-on-error: true - name: Perform completeness tests run: cd ansible-platform && make collection-test-completeness