From e9c73316b5517d9f2e66c139dbca6b5ac1ccd3ba Mon Sep 17 00:00:00 2001 From: ykim-1 Date: Thu, 18 Apr 2024 10:08:36 -0700 Subject: [PATCH 1/2] fix cross testing workflow --- .github/workflows/release-cross-repo-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-cross-repo-test.yml b/.github/workflows/release-cross-repo-test.yml index 0f484d9af..0551cc593 100644 --- a/.github/workflows/release-cross-repo-test.yml +++ b/.github/workflows/release-cross-repo-test.yml @@ -26,9 +26,6 @@ jobs: with: python-version: '3.10' - - name: Install linode_api4 - run: make install - - name: checkout repo uses: actions/checkout@v3 with: @@ -48,6 +45,9 @@ jobs: cd .ansible/collections/ansible_collections/linode/cloud make install + - name: Install linode_api4 # Need to install from source after all ansible dependencies have been installed + run: make install + - name: replace existing keys run: | cd .ansible/collections/ansible_collections/linode/cloud From 9bcaaa404050e29b8a58267c1714b858315461ba Mon Sep 17 00:00:00 2001 From: ykim-1 Date: Thu, 18 Apr 2024 10:24:03 -0700 Subject: [PATCH 2/2] Update name --- .github/workflows/release-cross-repo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-cross-repo-test.yml b/.github/workflows/release-cross-repo-test.yml index 0551cc593..0850ed9ea 100644 --- a/.github/workflows/release-cross-repo-test.yml +++ b/.github/workflows/release-cross-repo-test.yml @@ -53,7 +53,7 @@ jobs: cd .ansible/collections/ansible_collections/linode/cloud rm -rf ~/.ansible/test && mkdir -p ~/.ansible/test && ssh-keygen -m PEM -q -t rsa -N '' -f ~/.ansible/test/id_rsa - - name: run tests + - name: Run Ansible Tests run: | cd .ansible/collections/ansible_collections/linode/cloud make testall