From e0cb49c319d97d8c87c5a3efdcacac915255d816 Mon Sep 17 00:00:00 2001 From: Kyle Harding Date: Fri, 2 Feb 2024 10:26:09 -0500 Subject: [PATCH] Remove most test targets for forked repo Signed-off-by: Kyle Harding --- .github/workflows/tests.yml | 10 ---------- tests/docker-compose.test.yml | 28 ---------------------------- 2 files changed, 38 deletions(-) delete mode 100644 tests/docker-compose.test.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4a9aee58..785a1a962 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,16 +24,6 @@ jobs: secrets: inherit with: working_directory: ./tests - docker_images: | - ghcr.io/product-os/flowzone - balena_slugs: | - product_os/flowzone - cargo_targets: | - x86_64-unknown-linux-gnu, - armv7-unknown-linux-gnueabi, - aarch64-unknown-linux-gnu - cloudflare_website: "flowzone" - bake_targets: default,multiarch jobs_timeout_minutes: 30 docker_publish_platform_tags: true docker_runs_on: > diff --git a/tests/docker-compose.test.yml b/tests/docker-compose.test.yml deleted file mode 100644 index f9f12a02f..000000000 --- a/tests/docker-compose.test.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: '2.1' - -services: - sut: - # image: sut - build: - context: . - dockerfile: Dockerfile - depends_on: - - redis - environment: - # This value should be set as a base64 encoded value in the COMPOSE_VARS secret in the GitHub repo - # and passed down by the GitHub action - - REPO_SECRET - networks: - - internal - - redis: - image: redis:7 - command: redis-server --appendonly yes - restart: always - networks: - - internal - ports: - - '6379:6379' - -networks: - internal: {}