Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try plugin cache, split examples tests #1215

Merged
merged 3 commits into from
Mar 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 79 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ env:
TF_VERSION: 1.3.9

jobs:
examples:
examples-blueprints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -54,6 +54,14 @@ jobs:
terraform_version: ${{ env.TF_VERSION }}
terraform_wrapper: false

- name: Configure provider cache
run: |
echo 'plugin_cache_dir = "$HOME/.terraform.d/plugin-cache"' \
| tee -a $HOME/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a $HOME/.terraformrc
mkdir -p $HOME/.terraform.d/plugin-cache

# avoid conflicts with user-installed providers on local machines
- name: Pin provider versions
run: |
Expand All @@ -66,7 +74,52 @@ jobs:
run: |
mkdir -p ${{ env.TF_PLUGIN_CACHE_DIR }}
pip install -r tests/requirements.txt
pytest -vv tests/examples
pytest -vv -k blueprints/ tests/examples

examples-modules:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Config auth
run: |
echo '{"type": "service_account", "project_id": "test-only"}' \
| tee -a $GOOGLE_APPLICATION_CREDENTIALS

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'
cache-dependency-path: 'tests/requirements.txt'

- name: Set up Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: ${{ env.TF_VERSION }}
terraform_wrapper: false

- name: Configure provider cache
run: |
echo 'plugin_cache_dir = "$HOME/.terraform.d/plugin-cache"' \
| tee -a $HOME/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a $HOME/.terraformrc
mkdir -p $HOME/.terraform.d/plugin-cache

# avoid conflicts with user-installed providers on local machines
- name: Pin provider versions
run: |
for f in $(find . -name versions.tf); do
sed -i 's/>=\(.*# tftest\)/=\1/g' $f;
done

- name: Run tests on documentation examples
id: pytest
run: |
mkdir -p ${{ env.TF_PLUGIN_CACHE_DIR }}
pip install -r tests/requirements.txt
pytest -vv -k modules/ tests/examples

blueprints:
runs-on: ubuntu-latest
Expand All @@ -91,6 +144,14 @@ jobs:
terraform_version: ${{ env.TF_VERSION }}
terraform_wrapper: false

- name: Configure provider cache
run: |
echo 'plugin_cache_dir = "$HOME/.terraform.d/plugin-cache"' \
| tee -a $HOME/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a $HOME/.terraformrc
mkdir -p $HOME/.terraform.d/plugin-cache

# avoid conflicts with user-installed providers on local machines
- name: Pin provider versions
run: |
Expand Down Expand Up @@ -128,6 +189,14 @@ jobs:
terraform_version: ${{ env.TF_VERSION }}
terraform_wrapper: false

- name: Configure provider cache
run: |
echo 'plugin_cache_dir = "$HOME/.terraform.d/plugin-cache"' \
| tee -a $HOME/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a $HOME/.terraformrc
mkdir -p $HOME/.terraform.d/plugin-cache

# avoid conflicts with user-installed providers on local machines
- name: Pin provider versions
run: |
Expand Down Expand Up @@ -165,6 +234,14 @@ jobs:
terraform_version: ${{ env.TF_VERSION }}
terraform_wrapper: false

- name: Configure provider cache
run: |
echo 'plugin_cache_dir = "$HOME/.terraform.d/plugin-cache"' \
| tee -a $HOME/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a $HOME/.terraformrc
mkdir -p $HOME/.terraform.d/plugin-cache

# avoid conflicts with user-installed providers on local machines
- name: Pin provider versions
run: |
Expand Down