File tree 2 files changed +17
-15
lines changed
2 files changed +17
-15
lines changed Original file line number Diff line number Diff line change
1
+ name : " Contribution Agreement"
2
+ on :
3
+ pull_request
4
+
5
+ jobs :
6
+ AgreementCheck :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - name : Checkout
10
+ uses : actions/checkout@v2
11
+ with :
12
+ fetch-depth : 0
13
+ - run : |
14
+ echo Looking up contributor
15
+ tail -n +36 Contribution\ Agreement.md | awk -F\| '{print $3}' | grep -w $USER
16
+ env:
17
+ USER: ${{ github.actor }}
Original file line number Diff line number Diff line change @@ -3,22 +3,8 @@ trigger:
3
3
- release/*
4
4
5
5
jobs :
6
- - job : CLA
7
- timeoutInMinutes : 5
8
- pool :
9
- vmImage : ' ubuntu-latest'
10
-
11
- steps :
12
- - script : |
13
- echo Checking contribution agreement for $USER
14
- tail -n +36 Contribution\ Agreement.md | awk -F\| '{print $3}' | grep -wq $USER
15
- displayName: "Check Contributor Agreement"
16
- env:
17
- USER: $(Build.RequestedFor)
18
-
19
6
- job : CMake
20
7
timeoutInMinutes : 120
21
- dependsOn : CLA
22
8
strategy :
23
9
maxParallel : 6
24
10
matrix :
91
77
92
78
- job : MSVC
93
79
timeoutInMinutes : 120
94
- dependsOn : CLA
95
80
pool :
96
81
vmImage : ' windows-latest'
97
82
strategy :
You can’t perform that action at this time.
0 commit comments