This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
login: Remove the PAT message #2043
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: ECS integration tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
GO_VERSION: 1.19 | |
jobs: | |
check-optional-tests: | |
name: Check if needs to run ECS tests | |
runs-on: ubuntu-latest | |
outputs: | |
trigger-ecs: ${{steps.runecstest.outputs.triggered}} | |
steps: | |
- uses: khan/pull-request-comment-trigger@master | |
name: Check if test ECS | |
if: github.event_name == 'pull_request' | |
id: runecstest | |
with: | |
trigger: '/test-ecs' | |
ecs-tests: | |
name: ECS e2e tests | |
runs-on: ubuntu-latest | |
needs: check-optional-tests | |
if: github.ref == 'refs/heads/main' || needs.check-optional-tests.outputs.trigger-ecs == 'true' | |
steps: | |
- name: Checkout code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
cache: true | |
- name: Setup docker CLI | |
run: | | |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz | |
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version | |
- name: Build for ECS e2e tests | |
run: make -f builder.Makefile cli | |
- name: create aws config folder | |
run: mkdir -p ~/.aws | |
- name: ECS e2e Test | |
env: | |
AWS_DEFAULT_REGION: us-west-2 | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} | |
run: make e2e-ecs |