From 24dde1cbe0fb4c935a59c1a3d50d4271ec110402 Mon Sep 17 00:00:00 2001 From: Jason Dellaluce Date: Wed, 2 Aug 2023 16:31:35 +0000 Subject: [PATCH] cleanup(.circleci): remove jobs using python regression tests Signed-off-by: Jason Dellaluce --- .circleci/config.yml | 75 +------------------------------------------- 1 file changed, 1 insertion(+), 74 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 56733311..c5b0973a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -149,68 +149,6 @@ jobs: - build/release - source - # Execute integration tests based on the build results coming from the "build-centos7" job - "tests-integration": - docker: - - image: falcosecurity/falco-tester:latest - environment: - SOURCE_DIR: "/source" - BUILD_DIR: "/build" - BUILD_TYPE: "release" - steps: - - setup_remote_docker - - attach_workspace: - at: / - - run: - name: Execute integration tests - command: /usr/bin/entrypoint test - - store_test_results: - path: /build/release/integration-tests-xunit - "tests-integration-static": - docker: - - image: falcosecurity/falco-tester:latest - environment: - SOURCE_DIR: "/source-static" - BUILD_DIR: "/build-static" - BUILD_TYPE: "release" - SKIP_PACKAGES_TESTS: "true" - SKIP_PLUGINS_TESTS: "true" - steps: - - setup_remote_docker - - attach_workspace: - at: / - - run: - name: Execute integration tests - command: /usr/bin/entrypoint test - - store_test_results: - path: /build-static/release/integration-tests-xunit - # Execute integration tests based on the build results coming from the "build-arm64" job - "tests-integration-arm64": - machine: - enabled: true - image: ubuntu-2004:202101-01 - resource_class: arm.medium - steps: - - attach_workspace: - at: /tmp - - run: - name: Execute integration tests - command: | - docker run -e BUILD_TYPE="release" -e BUILD_DIR="/build" -e SOURCE_DIR="/source" -it -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/source-arm64:/source -v /tmp/build-arm64:/build \ - falcosecurity/falco-tester:latest \ - test - - store_test_results: - path: /tmp/build-arm64/release/integration-tests-xunit - "tests-driver-loader-integration": - machine: - image: ubuntu-2004:2023.04.2 - steps: - - attach_workspace: - at: /tmp/ws - - run: - name: Execute driver-loader integration tests - command: /tmp/ws/source/falco/test/driver-loader/run_test.sh /tmp/ws/build/release/ - workflows: version: 2.1 build_and_test: @@ -218,15 +156,4 @@ workflows: - "build-musl" - "build-arm64" - "build-centos7" - - "tests-integration": - requires: - - "build-centos7" - - "tests-integration-arm64": - requires: - - "build-arm64" - - "tests-integration-static": - requires: - - "build-musl" - - "tests-driver-loader-integration": - requires: - - "build-centos7" +