-
Notifications
You must be signed in to change notification settings - Fork 5
74 lines (61 loc) · 1.96 KB
/
ansible-tests-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
on:
pull_request_target:
paths:
- config
- equinix_metal
- templates
- metal_openapi.fixed.yaml
- oas3.stitched
- oas3.fetched
- .github/**
workflow_dispatch:
permissions:
pull-requests: read
contents: read
jobs:
authorize:
environment:
${{ github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.full_name != github.repository &&
'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
integration-test-pr:
needs: authorize
runs-on: ubuntu-latest
defaults:
run:
working-directory: .ansible/collections/ansible_collections/equinix/cloud
steps:
- name: checkout Ansible collection
uses: actions/checkout@v4
with:
name: equinix-labs/ansible-collection-equinix
path: .ansible/collections/ansible_collections/equinix/cloud
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: update packages
run: sudo apt-get update -y
- name: install make
run: sudo apt-get install -y build-essential
- name: setup python 3
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: install dependencies
run: pip3 install -r requirements-dev.txt -r requirements.txt
- name: install collection
run: make install
- name: replace existing keys
run: rm -rf ~/.ansible/test && mkdir -p ~/.ansible/test && ssh-keygen -m PEM -q -t rsa -N '' -f ~/.ansible/test/id_rsa
- name: checkout Python SDK, this PR
uses: actions/checkout@v4
with:
path: /tmp/metal-python
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: install cloned Python SDK
run: python -m pip install /tmp/metal-python/equinix_metal
- name: run tests
run: make testall
env:
METAL_API_TOKEN: ${{ secrets.METAL_API_TOKEN }}