Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Improved CI to avoid 'killed signal' error #503

Merged
merged 24 commits into from
Sep 8, 2020
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cf419f0
[env] add resource_class property in lint job executor
dittrichlucas Sep 4, 2020
4495530
[env] separate workflows with new line
dittrichlucas Sep 4, 2020
0281cc9
[env] add no_output_timeout property in lint job and change timeout o…
dittrichlucas Sep 8, 2020
16c32b6
[env] add resource_class property in lint job executor
dittrichlucas Sep 4, 2020
1ce30be
[env] separate workflows with new line
dittrichlucas Sep 4, 2020
faf61c9
[env] add no_output_timeout property in lint job and change timeout o…
dittrichlucas Sep 8, 2020
6beb91b
Merge branch 'env/improve-ci' of github.com:DittrichLucas/ritchie-cli…
dittrichlucas Sep 8, 2020
89c168c
[env] add resource_class property in lint job executor
dittrichlucas Sep 4, 2020
ad5b88e
[env] separate workflows with new line
dittrichlucas Sep 4, 2020
244ead0
[env] add no_output_timeout property in lint job and change timeout o…
dittrichlucas Sep 8, 2020
7b6675e
Merge branch 'env/improve-ci' of github.com:DittrichLucas/ritchie-cli…
dittrichlucas Sep 8, 2020
da99afb
[env] add resource_class property in lint job executor
dittrichlucas Sep 4, 2020
a8c8d88
[env] separate workflows with new line
dittrichlucas Sep 4, 2020
4669660
[env] add no_output_timeout property in lint job and change timeout o…
dittrichlucas Sep 8, 2020
7aeb0c1
Merge branch 'env/improve-ci' of github.com:DittrichLucas/ritchie-cli…
dittrichlucas Sep 8, 2020
e766dc4
[env] add resource_class property in lint job executor
dittrichlucas Sep 4, 2020
6489c19
[env] separate workflows with new line
dittrichlucas Sep 4, 2020
aea5844
[env] add no_output_timeout property in lint job and change timeout o…
dittrichlucas Sep 8, 2020
2ffed90
Merge branch 'env/improve-ci' of github.com:DittrichLucas/ritchie-cli…
dittrichlucas Sep 8, 2020
361eb9d
[env] add resource_class property in lint job executor
dittrichlucas Sep 4, 2020
3d24c43
[env] separate workflows with new line
dittrichlucas Sep 4, 2020
0314e23
[env] add no_output_timeout property in lint job and change timeout o…
dittrichlucas Sep 8, 2020
e32b259
Merge branch 'env/improve-ci' of github.com:DittrichLucas/ritchie-cli…
dittrichlucas Sep 8, 2020
9feb5ac
[env] change the value of the resource_class property to medium
dittrichlucas Sep 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ executors:
docker:
- image: *PYTHONWITHGO_IMAGE
user: root
resource_class: medium
working_directory: /workspace

ritchie-executor:
Expand Down Expand Up @@ -105,7 +106,8 @@ jobs:
- run:
name: lint
command: |
golangci-lint run --no-config --issues-exit-code=1 --deadline=10m -v
golangci-lint run --no-config --issues-exit-code=1 --timeout=5m -v
no_output_timeout: 5m

horus:
executor: horus-executor
Expand Down Expand Up @@ -144,6 +146,7 @@ jobs:
name: codecov upload
when: always
command: bash <(curl -s https://codecov.io/bash)

unix_functional_test:
executor: ritchie-executor
environment:
Expand Down Expand Up @@ -377,6 +380,7 @@ workflows:
- beta
jobs:
- release_creator

nightly:
triggers:
- schedule:
Expand All @@ -387,6 +391,7 @@ workflows:
- master
jobs:
- rebase_nightly

beta:
triggers:
- schedule:
Expand Down Expand Up @@ -435,6 +440,7 @@ workflows:
<<: *FILTERS_CHECK_CODE
requires:
- build-code

release:
jobs:
- build:
Expand Down Expand Up @@ -481,6 +487,7 @@ workflows:
<<: *FILTERS_RELEASE
requires:
- release-publish

delivery:
jobs:
- build:
Expand Down