Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] Enable code coverage report on pr. #1904

Merged
merged 2 commits into from
Dec 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Code Coverage Report
on:
workflow_dispatch:
schedule:
- cron: '0 17 * * *'
pull_request:
push:
branches:
- master
jobs:
code_coverage_report:
name: Generate code coverage report
Expand Down
6 changes: 3 additions & 3 deletions kube/manifest/runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ spec:

resources:
requests:
cpu: "1"
memory: "1Gi"
cpu: "24.0"
memory: "48Gi"
# If set to false, there are no privileged container and you cannot use docker.
dockerEnabled: true
# If set to true, runner pod container only 1 container that's expected to be able to run docker, too.
Expand All @@ -34,7 +34,7 @@ spec:
scaleTargetRef:
name: starcoin-runner-deployment
minReplicas: 1
maxReplicas: 5
maxReplicas: 6
scaleDownDelaySecondsAfterScaleOut: 300
metrics:
- type: TotalNumberOfQueuedAndInProgressWorkflowRuns
Expand Down
2 changes: 1 addition & 1 deletion kube/manifest/starcoin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
spec:
containers:
- name: starcoin
image: starcoin/starcoin:v0.9.2
image: starcoin/starcoin:v0.9.3
imagePullPolicy: Always
command:
- bash
Expand Down