From 0acb6ea6bcd3ba420ea7055c68c722cc0a7c0bb3 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Wed, 15 May 2024 09:04:19 -0600 Subject: [PATCH] Remove legacy commands for docker startup --- .gitea/workflows/fixturenet-eth-plugeth-arm-test.yml | 4 ---- .gitea/workflows/fixturenet-eth-plugeth-test.yml | 8 -------- .gitea/workflows/fixturenet-eth-test.yml | 8 -------- .gitea/workflows/test-deploy.yml | 7 ------- .gitea/workflows/test-webapp.yml | 8 -------- .gitea/workflows/test.yml | 7 ------- 6 files changed, 42 deletions(-) diff --git a/.gitea/workflows/fixturenet-eth-plugeth-arm-test.yml b/.gitea/workflows/fixturenet-eth-plugeth-arm-test.yml index b5e8d22c..4117c679 100644 --- a/.gitea/workflows/fixturenet-eth-plugeth-arm-test.yml +++ b/.gitea/workflows/fixturenet-eth-plugeth-arm-test.yml @@ -9,10 +9,6 @@ on: schedule: # Note: coordinate with other tests to not overload runners at the same time of day - cron: '2 14 * * *' -# Needed until we can incorporate docker startup into the executor container -env: - DOCKER_HOST: unix:///var/run/dind.sock - jobs: test: diff --git a/.gitea/workflows/fixturenet-eth-plugeth-test.yml b/.gitea/workflows/fixturenet-eth-plugeth-test.yml index f9db5e86..1ac20e30 100644 --- a/.gitea/workflows/fixturenet-eth-plugeth-test.yml +++ b/.gitea/workflows/fixturenet-eth-plugeth-test.yml @@ -9,10 +9,6 @@ on: schedule: # Note: coordinate with other tests to not overload runners at the same time of day - cron: '2 14 * * *' -# Needed until we can incorporate docker startup into the executor container -env: - DOCKER_HOST: unix:///var/run/dind.sock - jobs: test: @@ -41,10 +37,6 @@ jobs: run: ./scripts/create_build_tag_file.sh - name: "Build local shiv package" run: ./scripts/build_shiv_package.sh - - name: Start dockerd # Also needed until we can incorporate into the executor - run: | - dockerd -H $DOCKER_HOST --userland-proxy=false & - sleep 5 - name: "Run fixturenet-eth tests" run: ./tests/fixturenet-eth-plugeth/run-test.sh - name: Notify Vulcanize Slack on CI failure diff --git a/.gitea/workflows/fixturenet-eth-test.yml b/.gitea/workflows/fixturenet-eth-test.yml index 671184a9..4d0f3503 100644 --- a/.gitea/workflows/fixturenet-eth-test.yml +++ b/.gitea/workflows/fixturenet-eth-test.yml @@ -7,10 +7,6 @@ on: - '!**' - '.gitea/workflows/triggers/fixturenet-eth-test' -# Needed until we can incorporate docker startup into the executor container -env: - DOCKER_HOST: unix:///var/run/dind.sock - jobs: test: @@ -39,10 +35,6 @@ jobs: run: ./scripts/create_build_tag_file.sh - name: "Build local shiv package" run: ./scripts/build_shiv_package.sh - - name: Start dockerd # Also needed until we can incorporate into the executor - run: | - dockerd -H $DOCKER_HOST --userland-proxy=false & - sleep 5 - name: "Run fixturenet-eth tests" run: ./tests/fixturenet-eth/run-test.sh - name: Notify Vulcanize Slack on CI failure diff --git a/.gitea/workflows/test-deploy.yml b/.gitea/workflows/test-deploy.yml index 426b629b..ca32b876 100644 --- a/.gitea/workflows/test-deploy.yml +++ b/.gitea/workflows/test-deploy.yml @@ -10,9 +10,6 @@ on: paths-ignore: - '.gitea/workflows/triggers/*' -# Needed until we can incorporate docker startup into the executor container -env: - DOCKER_HOST: unix:///var/run/dind.sock jobs: test: @@ -41,10 +38,6 @@ jobs: run: ./scripts/create_build_tag_file.sh - name: "Build local shiv package" run: ./scripts/build_shiv_package.sh - - name: Start dockerd # Also needed until we can incorporate into the executor - run: | - dockerd -H $DOCKER_HOST --userland-proxy=false & - sleep 5 - name: "Run deploy tests" run: ./tests/deploy/run-deploy-test.sh - name: Notify Vulcanize Slack on CI failure diff --git a/.gitea/workflows/test-webapp.yml b/.gitea/workflows/test-webapp.yml index 708c6b3d..65c0c043 100644 --- a/.gitea/workflows/test-webapp.yml +++ b/.gitea/workflows/test-webapp.yml @@ -10,10 +10,6 @@ on: paths-ignore: - '.gitea/workflows/triggers/*' -# Needed until we can incorporate docker startup into the executor container -env: - DOCKER_HOST: unix:///var/run/dind.sock - jobs: test: name: "Run webapp test suite" @@ -43,10 +39,6 @@ jobs: run: ./scripts/build_shiv_package.sh - name: "Install wget" # 20240109 - Only needed until the executors are updated. run: apt update && apt install -y wget - - name: Start dockerd # Also needed until we can incorporate into the executor - run: | - dockerd -H $DOCKER_HOST --userland-proxy=false & - sleep 5 - name: "Run webapp tests" run: ./tests/webapp-test/run-webapp-test.sh - name: Notify Vulcanize Slack on CI failure diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index f017dc49..b92dfae1 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -10,9 +10,6 @@ on: paths-ignore: - '.gitea/workflows/triggers/*' -# Needed until we can incorporate docker startup into the executor container -env: - DOCKER_HOST: unix:///var/run/dind.sock jobs: test: @@ -41,10 +38,6 @@ jobs: run: ./scripts/create_build_tag_file.sh - name: "Build local shiv package" run: ./scripts/build_shiv_package.sh - - name: Start dockerd # Also needed until we can incorporate into the executor - run: | - dockerd -H $DOCKER_HOST --userland-proxy=false & - sleep 5 - name: "Run smoke tests" run: ./tests/smoke-test/run-smoke-test.sh - name: Notify Vulcanize Slack on CI failure