Update github.com/muesli/termenv digest to 8c990cd #618
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
# this tests the basic commands without checking the output | |
actions: | |
runs-on: depot-ubuntu-22.04-4 | |
env: | |
CGO_ENABLED: 0 | |
permissions: | |
contents: read # required for checkout | |
id-token: write # mint AWS credentials through OIDC | |
steps: | |
- name: Cache Terraform Providers | |
id: cache-terraform | |
uses: actions/cache@v4 | |
with: | |
path: .terraform | |
key: ${{ runner.os }}-${{ inputs.environment }}-${{ hashFiles('**/.terraform.lock.hcl') }} | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.5.7 | |
terraform_wrapper: false | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
audience: sts.amazonaws.com # set default value to work around https://github.com/aws-actions/configure-aws-credentials/issues/271#issuecomment-1401481855 | |
aws-region: eu-west-2 | |
role-to-assume: arn:aws:iam::211125377101:role/terraform-ci-test | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Go Init | |
uses: ./.github/actions/go_init | |
- name: Build the binary | |
run: | | |
set -xe | |
go get -v -t -d ./... | |
go build -o overmind main.go | |
- name: Run E2E Tests | |
env: | |
OVM_API_KEY: ${{ secrets.OVM_API_KEY }} | |
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY }} | |
run: | | |
set -xe | |
./overmind -v | |
terraform init | |
terraform plan -out=tfplan | |
terraform show -json tfplan > tfplan.json | |
ticket_link='${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}' | |
./overmind changes submit-plan \ | |
--title "Test Change for e2e tests" \ | |
--description "some description" \ | |
--ticket-link "$ticket_link" \ | |
tfplan.json \ | |
> ./overmindtech-change-url | |
# we only want the last line of the previous command | |
./overmind changes get-change \ | |
--change "$(tail -n 1 ./overmindtech-change-url)" \ | |
--format markdown \ | |
> ./overmindtech-message | |
./overmind changes start-change \ | |
--ticket-link "$ticket_link" | |
./overmind changes end-change \ | |
--ticket-link "$ticket_link" | |
echo "E2E Tests Complete" | |
# this runs 2 commands that require user input, | |
# the `overmind terraform plan` subcommand has to be run first and succeed before the `overmind terraform apply` subcommand can be run | |
# the lost pixel tapes have built in sleeps to wait for commands to complete | |
interactive: | |
runs-on: depot-ubuntu-22.04-4 | |
env: | |
CGO_ENABLED: 0 | |
permissions: | |
contents: read # required for checkout | |
id-token: write # mint AWS credentials through OIDC | |
steps: | |
- name: Cache Terraform Providers | |
id: cache-terraform | |
uses: actions/cache@v4 | |
with: | |
path: .terraform | |
key: ${{ runner.os }}-${{ inputs.environment }}-${{ hashFiles('**/.terraform.lock.hcl') }} | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.5.7 | |
terraform_wrapper: false | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
audience: sts.amazonaws.com # set default value to work around https://github.com/aws-actions/configure-aws-credentials/issues/271#issuecomment-1401481855 | |
aws-region: eu-west-2 | |
role-to-assume: arn:aws:iam::211125377101:role/terraform-ci-test | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Go Init | |
uses: ./.github/actions/go_init | |
- name: Build the binary | |
run: | | |
set -xe | |
go get -v -t -d ./... | |
go build -o overmind main.go | |
- name: Run E2E Tests | |
env: | |
OVM_API_KEY: ${{ secrets.OVM_API_KEY }} | |
HONEYCOMB_API_KEY: ${{ secrets.HONEYCOMB_API_KEY }} | |
TEABUG: pls | |
run: | | |
set -xe | |
go build -o overmind main.go | |
./overmind -v | |
terraform init | |
cp -a $(which terraform) . # provide a terraform binary to the containers below | |
# see the workflow file for an explanation of what is happening here | |
docker run --rm -e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION -e AWS_REGION -e AWS_SESSION_TOKEN -e HONEYCOMB_API_KEY -e OVM_API_KEY -e TEABUG -v $PWD:/vhs -v ~/.aws:/root/.aws ghcr.io/charmbracelet/vhs /vhs/.github/e2eplan.tape | |
docker run --rm -e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION -e AWS_REGION -e AWS_SESSION_TOKEN -e HONEYCOMB_API_KEY -e OVM_API_KEY -e TEABUG -v $PWD:/vhs -v ~/.aws:/root/.aws ghcr.io/charmbracelet/vhs /vhs/.github/e2eapply.tape | |
sudo chown --recursive $(whoami) . | |
terraform apply -destroy -auto-approve | |
echo "E2E Tests Complete" | |
- name: debug output | |
if: always() | |
run: | | |
cat teabug.log | |
- name: Upload plan results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: plan.mp4 | |
path: e2e/plan.* | |
- name: Upload apply results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: apply.mp4 | |
path: e2e/apply.* | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
id: pnpm-install | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Setup pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
continue-on-error: false | |
- name: Lost Pixel | |
uses: lost-pixel/[email protected] | |
env: | |
LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} |