mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-04 09:50:27 -07:00
Enabling tests that work without any further modification as an incremental step to enabling all integration tests. Enabling 22 / 64 tests. The following tests do not work today: - gcp_appengine_firewall_rule - gcp_bigtable_instance - gcp_cloudfunctions_cloud_function - gcp_cloudtasks_queue - gcp_compute_backend_service - gcp_compute_external_vpn_gateway - gcp_compute_forwarding_rule - gcp_compute_instance - gcp_compute_instance_group - gcp_compute_instance_group_manager - gcp_compute_instance_group_template - gcp_compute_node_group - gcp_compute_region_autoscaler - gcp_compute_region_instance_group_manager - gcp_compute_region_target_http_proxy - gcp_compute_region_target_https_proxy - gcp_compute_region_url_map - gcp_compute_route - gcp_compute_router - gcp_compute_ssl_certificate - gcp_compute_target_http_proxy - gcp_compute_target_https_proxy - gcp_compute_target_instance - gcp_compute_target_pool - gcp_compute_target_ssl_proxy - gcp_compute_target_tcp_proxy - gcp_compute_target_vpn_proxy - gcp_container_cluster - gcp_container_node_pool - gcp_iam_role - gcp_iam_service_account - gcp_iam_service_account_key - gcp_kms_key_ring - gcp_mlengine_version - gcp_redis_instance - gcp_resourcemanager_project - gcp_serviceusage_service - gcp_spanner_database - gcp_spanner_instance - gcp_sql_ssl_cert - gcp_storage_bucket - gcp_tpu_node
49 lines
No EOL
1.9 KiB
YAML
49 lines
No EOL
1.9 KiB
YAML
name: "Run integration tests for the cloud.google collection"
|
|
on:
|
|
# NOTE: GitHub does not allow secrets to be used
|
|
# in PRs sent from forks. As such, this configuration is for
|
|
# PRs that the maintainers would like to send to test.
|
|
pull_request: {}
|
|
push:
|
|
branches: master
|
|
jobs:
|
|
integration:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ansible_collections/google/cloud
|
|
strategy:
|
|
matrix:
|
|
ansible_version:
|
|
# - stable-2.13
|
|
- stable-2.11
|
|
steps:
|
|
- name: check out code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: ansible_collections/google/cloud
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '3.8' # this is the minimum version required for Ansible 2.11
|
|
- name: Install dependencies
|
|
run: pip install -r requirements.txt
|
|
- name: Install ansible-base (${{ matrix.ansible_version }})
|
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible_version }}.tar.gz --disable-pip-version-check
|
|
- name: Write integration-test configuration files
|
|
env:
|
|
CI_SERVICE_ACCOUNT_FILE_CONTENTS: ${{ secrets.CI_SERVICE_ACCOUNT_FILE_CONTENTS }}
|
|
run: |
|
|
echo "$CI_SERVICE_ACCOUNT_FILE_CONTENTS" > /tmp/service-account-key.json
|
|
echo "[default]
|
|
gcp_project: ansible-gcp-ci
|
|
gcp_cred_file: /tmp/service-account-key.json
|
|
gcp_cred_kind: serviceaccount
|
|
gcp_cred_email: github-ci@ansible-gcp-ci.iam.gserviceaccount.com
|
|
" > ./tests/integration/cloud-config-gcp.ini
|
|
- name: test secrets
|
|
env: ${{ secrets }}
|
|
run: echo "$CI_SERVICE_ACCOUNT_FILE_CONTENTS"
|
|
- name: Run integration tests
|
|
# Add the -vvv flag to print out more output
|
|
run: ansible-test integration -v --color --python 3.8 --venv-system-site-packages |