Skip to content

Commit 35d249b

Browse files
authored
Update release.yml
1 parent b650d34 commit 35d249b

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

.github/workflows/release.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -39,50 +39,50 @@ jobs:
3939
run: ansible-test sanity -v --color --coverage
4040
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
4141

42-
integration:
43-
runs-on: ubuntu-latest
44-
name: Integration (Ⓐ${{ matrix.ansible }}-py${{ matrix.python }})
45-
strategy:
46-
fail-fast: true
47-
max-parallel: 1
48-
matrix:
49-
ansible:
50-
- stable-2.13
51-
python:
52-
- '3.10'
42+
# integration:
43+
# runs-on: ubuntu-latest
44+
# name: Integration (Ⓐ${{ matrix.ansible }}-py${{ matrix.python }})
45+
# strategy:
46+
# fail-fast: true
47+
# max-parallel: 1
48+
# matrix:
49+
# ansible:
50+
# - stable-2.13
51+
# python:
52+
# - '3.10'
5353

54-
steps:
55-
- name: Check out code
56-
uses: actions/checkout@v2
57-
with:
58-
path: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
54+
# steps:
55+
# - name: Check out code
56+
# uses: actions/checkout@v2
57+
# with:
58+
# path: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
5959

60-
- name: create integration_config
61-
working-directory: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}/tests/integration
62-
run: |
63-
cat <<EOF > integration_config.yml
64-
stack_name: ${{ secrets.ANSIBLE_TEST_STACK_NAME }}
65-
org_name: ${{ secrets.ANSIBLE_TEST_ORG_NAME }}
66-
grafana_cloud_api_key: ${{ secrets.ANSIBLE_TEST_CLOUD_API_KEY }}
67-
grafana_api_key: ${{ secrets.ANSIBLE_TEST_GRAFANA_API_KEY }}
68-
EOF
60+
# - name: create integration_config
61+
# working-directory: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}/tests/integration
62+
# run: |
63+
# cat <<EOF > integration_config.yml
64+
# stack_name: ${{ secrets.ANSIBLE_TEST_STACK_NAME }}
65+
# org_name: ${{ secrets.ANSIBLE_TEST_ORG_NAME }}
66+
# grafana_cloud_api_key: ${{ secrets.ANSIBLE_TEST_CLOUD_API_KEY }}
67+
# grafana_api_key: ${{ secrets.ANSIBLE_TEST_GRAFANA_API_KEY }}
68+
# EOF
6969

70-
- name: Set up Python
71-
uses: actions/setup-python@v2
72-
with:
73-
python-version: ${{ matrix.python }}
70+
# - name: Set up Python
71+
# uses: actions/setup-python@v2
72+
# with:
73+
# python-version: ${{ matrix.python }}
7474

75-
- name: Install ansible-base (${{ matrix.ansible }})
76-
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
75+
# - name: Install ansible-base (${{ matrix.ansible }})
76+
# run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
7777

78-
- name: Run integration test
79-
run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage
80-
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
78+
# - name: Run integration test
79+
# run: ansible-test integration -v --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --docker --coverage
80+
# working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
8181

8282
release:
8383
name: Create GitHub Release
8484
runs-on: ubuntu-latest
85-
needs: [sanity, integration]
85+
needs: [sanity]
8686
steps:
8787
- name: Checkout
8888
uses: actions/checkout@v3

0 commit comments

Comments
 (0)