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

Use composite action for test workflow prerequisite steps #1216

Merged
merged 7 commits into from
Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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
55 changes: 55 additions & 0 deletions .github/actions/fabric-tests/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: fabric-tests
description: Set up Fabric testing environment
inputs:
PYTHON_VERSION:
required: true
TERRAFORM_VERSION:
required: true
runs:
using: composite
steps:
- name: Config auth
shell: bash
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: ${{ inputs.PYTHON_VERSION }}
cache: 'pip'
cache-dependency-path: 'tests/requirements.txt'
- name: Set up Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: ${{ inputs.TERRAFORM_VERSION }}
terraform_wrapper: false
- name: Configure provider cache
shell: bash
run: |
echo 'plugin_cache_dir = "/home/runner/.terraform.d/plugin-cache"' \
| tee -a /home/runner/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a /home/runner/.terraformrc
mkdir -p /home/runner/.terraform.d/plugin-cache
# avoid conflicts with user-installed providers on local machines
- name: Pin provider versions
shell: bash
run: |
for f in $(find . -name versions.tf); do
sed -i 's/>=\(.*# tftest\)/=\1/g' $f;
done
176 changes: 20 additions & 156 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,43 +36,15 @@ jobs:
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
- name: Call Composite Action say-hello
uses: ./.github/actions/fabric-tests
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
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}

- 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 blueprints/ tests/examples

Expand All @@ -81,38 +53,11 @@ jobs:
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
- name: Call Composite Action say-hello
uses: ./.github/actions/fabric-tests
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
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}

- name: Run tests on documentation examples
id: pytest
Expand All @@ -126,38 +71,11 @@ jobs:
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
- name: Call Composite Action say-hello
ludoo marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/actions/fabric-tests
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
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}

- name: Run tests environments
id: pytest
Expand All @@ -171,38 +89,11 @@ jobs:
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
- name: Call Composite Action say-hello
uses: ./.github/actions/fabric-tests
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
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}

- name: Run tests modules
id: pytest
Expand All @@ -216,38 +107,11 @@ jobs:
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
- name: Call Composite Action say-hello
uses: ./.github/actions/fabric-tests
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
PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
TERRAFORM_VERSION: ${{ env.TERRAFORM_VERSION }}

- name: Run tests on FAST stages
id: pytest
Expand Down