|
14 | 14 | # You should not need to change anything below.
|
15 | 15 |
|
16 | 16 | jobs:
|
17 |
| - smoke: |
18 |
| - name: Smoketest test-tf-generation |
19 |
| - runs-on: ubuntu-latest |
20 |
| - steps: |
21 |
| - - uses: actions/checkout@v2 |
22 |
| - - name: Remove Python 2 and old Ansible 2.9 version |
23 |
| - run: sudo apt purge python ansible -y |
24 |
| - - name: Set up Python 3 |
25 |
| - uses: actions/setup-python@v2 |
26 |
| - with: |
27 |
| - python-version: '3.x' |
28 |
| - - name: Install Ansible v2.10.3 (GH actions currently uses 2.9) |
29 |
| - run: pip install ansible==2.10.3 |
30 |
| - - name: Print Ansible and Python version |
31 |
| - run: ansible --version && python --version |
32 |
| - - name: Get latest StackHead version |
33 |
| - run: ansible-galaxy collection install git+https://github.com/getstackhead/stackhead.git,next -f |
34 |
| - - run: ansible-playbook ./__tests__/test-tf-generation.yml |
| 17 | +# smoke: |
| 18 | +# name: Smoketest test-tf-generation |
| 19 | +# runs-on: ubuntu-latest |
| 20 | +# steps: |
| 21 | +# - uses: actions/checkout@v2 |
| 22 | +# - name: Remove Python 2 and old Ansible 2.9 version |
| 23 | +# run: sudo apt purge python ansible -y |
| 24 | +# - name: Set up Python 3 |
| 25 | +# uses: actions/setup-python@v2 |
| 26 | +# with: |
| 27 | +# python-version: '3.x' |
| 28 | +# - name: Install Ansible v2.10.3 (GH actions currently uses 2.9) |
| 29 | +# run: pip install ansible==2.10.3 |
| 30 | +# - name: Print Ansible and Python version |
| 31 | +# run: ansible --version && python --version |
| 32 | +# - name: Get latest StackHead version |
| 33 | +# run: ansible-galaxy collection install git+https://github.com/getstackhead/stackhead.git,next -f |
| 34 | +# - run: ansible-playbook ./__tests__/test-tf-generation.yml |
35 | 35 |
|
36 | 36 | checkLabel:
|
37 | 37 | name: Please request integration test and review
|
38 |
| - needs: smoke |
| 38 | + #needs: smoke |
39 | 39 | runs-on: ubuntu-latest
|
40 | 40 | if: github.event.pull_request.draft == false
|
41 | 41 | steps:
|
|
0 commit comments