File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # https://github.com/marketplace/actions/run-circle-ci-on-label
2+ name : build-and-test-gpu
3+
4+ on :
5+ pull_request :
6+ types :
7+ - labeled
8+
9+ jobs :
10+ valgrind_general :
11+ if : github.event.label.name == 'ci-test'
12+ runs-on : ubuntu-latest
13+ name : Run build and test cpu
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : circle-ci job runner
18+ id : curl-circle-ci
19+ uses : Open-Source-Contrib/circle-ci-trigger-action@latest
20+ with :
21+ circle_ci_token : ${{ secrets.CIRCLE_CI_SECRET}}
22+ circle_ci_job : build-and-test-gpu
23+ circle_ci_project_url : ${{ github.event.pull_request.head.ref }}
Original file line number Diff line number Diff line change 1+ # https://github.com/marketplace/actions/run-circle-ci-on-label
2+ name : valgrind-general-run
3+
4+ on :
5+ pull_request :
6+ types :
7+ - labeled
8+
9+ jobs :
10+ valgrind_general :
11+ if : github.event.label.name == 'ci-test'
12+ runs-on : ubuntu-latest
13+ name : Run valgrind general
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : circle-ci job runner
18+ id : curl-circle-ci
19+ uses : Open-Source-Contrib/circle-ci-trigger-action@latest
20+ with :
21+ circle_ci_token : ${{ secrets.CIRCLE_CI_SECRET}}
22+ circle_ci_job : valgrind-general
23+ circle_ci_project_url : ${{ github.event.pull_request.head.ref }}
You can’t perform that action at this time.
0 commit comments