Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 219b98f

Browse files
authored
Remove circle (#137)
* Remove circle * Add -u ${CODECOV_URL}
1 parent b09e9cc commit 219b98f

12 files changed

Lines changed: 35 additions & 1012 deletions

.circleci/config.yml

Lines changed: 0 additions & 407 deletions
This file was deleted.

.circleci/local.yml

Lines changed: 0 additions & 100 deletions
This file was deleted.

Dockerfile

Lines changed: 0 additions & 9 deletions
This file was deleted.

Dockerfile.circle

Lines changed: 0 additions & 15 deletions
This file was deleted.

Dockerfile.enterprise

Lines changed: 0 additions & 46 deletions
This file was deleted.

Dockerfile.enterprise_runtime

Lines changed: 0 additions & 22 deletions
This file was deleted.

Dockerfile.requirements

Lines changed: 0 additions & 56 deletions
This file was deleted.

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ push.self-hosted-rolling:
169169

170170
test_env.up:
171171
env | grep GITHUB > .testenv; true
172-
TIMESERIES_ENABLED=${TIMESERIES_ENABLED} docker-compose -f docker-compose-test.yml up -d
172+
TIMESERIES_ENABLED=${TIMESERIES_ENABLED} docker-compose up -d
173173

174174
test_env.prepare:
175-
docker-compose -f docker-compose-test.yml exec api make test_env.container_prepare
175+
docker-compose exec api make test_env.container_prepare
176176

177177
test_env.check_db:
178-
docker-compose -f docker-compose-test.yml exec api make test_env.container_check_db
178+
docker-compose exec api make test_env.container_check_db
179179
make test_env.check-for-migration-conflicts
180180

181181
test_env.install_cli:
@@ -191,30 +191,30 @@ test_env.container_check_db:
191191
while ! nc -vz timescale 5432; do sleep 1; echo "waiting for timescale"; done
192192

193193
test_env.run_unit:
194-
docker-compose -f docker-compose-test.yml exec api make test.unit
194+
docker-compose exec api make test.unit
195195

196196
test_env.check-for-migration-conflicts:
197-
docker-compose -f docker-compose-test.yml exec api python manage.py check_for_migration_conflicts
197+
docker-compose exec api python manage.py check_for_migration_conflicts
198198

199199
test_env.upload:
200-
docker-compose -f docker-compose-test.yml exec api make test_env.container_upload CODECOV_UPLOAD_TOKEN=${CODECOV_UPLOAD_TOKEN} CODECOV_URL=${CODECOV_URL}
200+
docker-compose exec api make test_env.container_upload CODECOV_UPLOAD_TOKEN=${CODECOV_UPLOAD_TOKEN} CODECOV_URL=${CODECOV_URL}
201201

202202
test_env.container_upload:
203203
codecovcli -u ${CODECOV_URL} upload-process --flag unit-latest-uploader --flag unit \
204204
--coverage-files-search-exclude-folder=graphql_api/types/** \
205205
--coverage-files-search-exclude-folder=api/internal/tests/unit/views/cassetes/**
206206

207207
test_env.static_analysis:
208-
docker-compose -f docker-compose-test.yml exec api make test_env.container_static_analysis CODECOV_STATIC_TOKEN=${CODECOV_STATIC_TOKEN}
208+
docker-compose exec api make test_env.container_static_analysis CODECOV_STATIC_TOKEN=${CODECOV_STATIC_TOKEN}
209209

210210
test_env.label_analysis:
211-
docker-compose -f docker-compose-test.yml exec api make test_env.container_label_analysis CODECOV_STATIC_TOKEN=${CODECOV_STATIC_TOKEN}
211+
docker-compose exec api make test_env.container_label_analysis CODECOV_STATIC_TOKEN=${CODECOV_STATIC_TOKEN}
212212

213213
test_env.ats:
214-
docker-compose -f docker-compose-test.yml exec api make test_env.container_ats CODECOV_UPLOAD_TOKEN=${CODECOV_UPLOAD_TOKEN}
214+
docker-compose exec api make test_env.container_ats CODECOV_UPLOAD_TOKEN=${CODECOV_UPLOAD_TOKEN}
215215

216216
test_env.container_static_analysis:
217-
codecovcli static-analysis --token=${CODECOV_STATIC_TOKEN}
217+
codecovcli -u ${CODECOV_URL} static-analysis --token=${CODECOV_STATIC_TOKEN}
218218

219219
test_env.container_label_analysis:
220220
$(shell codecovcli label-analysis --base-sha=${merge_sha} --token=${CODECOV_STATIC_TOKEN} --dry-run --dry-run-output-path=tests_to_run > /dev/null)

0 commit comments

Comments
 (0)