File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 26
26
jobs :
27
27
analyze :
28
28
name : Build and Analyze
29
- runs-on : ubuntu-22.04-64core
29
+ runs-on : linux-x64-gpu
30
30
timeout-minutes : 360
31
31
permissions :
32
32
actions : write
@@ -39,12 +39,21 @@ jobs:
39
39
language : [ 'c-cpp', 'javascript-typescript', 'python' ]
40
40
41
41
steps :
42
+ - if : matrix.language == 'c-cpp'
43
+ name : Setup environment
44
+ run : |
45
+ sudo apt update && sudo apt install -y git git-lfs
46
+
42
47
- name : Checkout repository
43
48
uses : actions/checkout@v4
44
49
with :
45
50
lfs : true
46
51
submodules : ' recursive'
47
52
53
+ - if : matrix.language == 'c-cpp'
54
+ name : Start tmate session
55
+ uses : mxschmitt/action-tmate@v3
56
+
48
57
- if : matrix.language == 'c-cpp'
49
58
name : Setup environment
50
59
run : |
@@ -94,10 +103,6 @@ jobs:
94
103
name : Autobuild
95
104
uses : github/codeql-action/autobuild@v3
96
105
97
- - if : matrix.language == 'c-cpp'
98
- name : Start tmate session
99
- uses : mxschmitt/action-tmate@v3
100
-
101
106
- if : matrix.language == 'c-cpp'
102
107
name : Build CMake project
103
108
run : |
You can’t perform that action at this time.
0 commit comments