Commit d77ae17 1 parent 46f2ff5 commit d77ae17 Copy full SHA for d77ae17
File tree 1 file changed +2
-12
lines changed
1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -24,16 +24,11 @@ jobs:
24
24
(github.event_name == 'workflow_dispatch' ||
25
25
(github.event_name == 'schedule' && github.repository == 'tezc/sc')) && !contains(github.event.inputs.skip, 'ubuntu')
26
26
name : Build on Ubuntu
27
-
28
- strategy :
29
- fail-fast : false
30
- matrix :
31
- compiler : gcc
32
27
steps :
33
28
- uses : actions/checkout@v2.1.0
34
29
- name : build
35
30
env :
36
- CC : ${{ matrix.compiler }}
31
+ CC : gcc
37
32
run : |
38
33
sudo apt update
39
34
sudo apt-get install valgrind cmake
@@ -58,16 +53,11 @@ jobs:
58
53
(github.event_name == 'workflow_dispatch' ||
59
54
(github.event_name == 'schedule' && github.repository == 'tezc/sc')) && !contains(github.event.inputs.skip, 'ubuntu')
60
55
name : Build on Ubuntu
61
-
62
- strategy :
63
- fail-fast : false
64
- matrix :
65
- compiler : clang
66
56
steps :
67
57
- uses : actions/checkout@v2.1.0
68
58
- name : build
69
59
env :
70
- CC : ${{ matrix.compiler }}
60
+ CC : clang
71
61
run : |
72
62
sudo apt update
73
63
sudo apt-get install valgrind cmake
You can’t perform that action at this time.
0 commit comments