Skip to content

Commit fda8e30

Browse files
authored
triggering valgrind run on pr label (#697)
1 parent 9e2e6e8 commit fda8e30

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 }}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 }}

0 commit comments

Comments
 (0)