diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 02f2cd8a77..0000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,45 +0,0 @@ -version: 2.1 - -jobs: - system-tests: - machine: - # https://support.circleci.com/hc/en-us/articles/360007324514-How-can-I-use-Docker-volume-mounting-on-CircleCI- - image: ubuntu-2404:current - resource_class: large - steps: - - checkout - - - run: - name: Install python 3.12 - command: sudo apt-get install python3.12-venv - - - run: - name: versions - command: | - docker --version - python3.12 --version - pip --version - - - run: - name: Build proxy - command: ./build.sh -i proxy - - - run: - name: Build - command: ./build.sh java - - - run: - name: Run - command: ./run.sh - - - run: - name: Collect artifacts - command: tar cvzf system-tests.tar.gz logs - - - store_artifacts: - path: system-tests.tar.gz - -workflows: - test: - jobs: - - system-tests