From 04e3b0b0140c5f896ec11139f09cb9de2bdb83be Mon Sep 17 00:00:00 2001 From: Alex Rashed <2796604+alexrashed@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:19:59 +0100 Subject: [PATCH] remove community usage --- .github/workflows/build.yml | 35 ++--------------------------------- 1 file changed, 2 insertions(+), 33 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9377842..93c0675 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,20 +71,8 @@ jobs: brew install docker colima start - - name: Community Non-Docker Smoke tests + - name: Non-Docker Smoke tests shell: bash - run: | - ls dist-bin/ - cd dist-bin - # show the help - ./localstack --help - # show the config - ./localstack config show - - - name: Pro Non-Docker Smoke tests - shell: bash - # Skip these checks for forks (forks do not have access to the LocalStack Pro API key) - if: ${{ ! github.event.pull_request.head.repo.fork }} run: | # create an extension with default parameters (enter all new lines to use defaults) printf "\n\n\n\n\n\n\n\n\n" | LOCALSTACK_AUTH_TOKEN=${{ secrets.TEST_LOCALSTACK_AUTH_TOKEN }} DEBUG=1 ./dist-bin/localstack extensions dev new @@ -93,32 +81,13 @@ jobs: # remove it again rm -rf my-localstack-extension - - name: Community Docker Smoke tests (Linux, MacOS) + - name: Docker Smoke tests (Linux, MacOS) shell: bash # GitHub Windows and xlarge MacOS runner cannot run Docker containers: # - https://github.com/orgs/community/discussions/25491 # - https://docs.github.com/en/actions/using-github-hosted-runners/about-larger-runners/ # TODO re-enable for mac when mac11 docker gets more stable if: matrix.os != 'windows' && matrix.os != 'darwin' - run: | - # Pull images to avoid making smoke tests vulnerable to system behavior (docker pull speed) - docker pull localstack/localstack - cd dist-bin - # start community - ./localstack start -d - ./localstack wait -t 180 - ./localstack status services --format plain - ./localstack status services --format plain | grep "s3=available" - ./localstack stop - - - name: Pro Docker Smoke tests (Linux, MacOS) - shell: bash - # GitHub Windows and xlarge MacOS runner cannot run Docker containers: - # - https://github.com/orgs/community/discussions/25491 - # - https://docs.github.com/en/actions/using-github-hosted-runners/about-larger-runners/ - # Skip these checks for forks (forks do not have access to the LocalStack Pro API key) - # TODO re-enable for mac when mac11 docker gets more stable - if: matrix.os != 'windows' && matrix.os != 'darwin' && !github.event.pull_request.head.repo.fork run: | # Pull images to avoid making smoke tests vulnerable to system behavior (docker pull speed) docker pull localstack/localstack-pro