Skip to content

Commit d77ae17

Browse files
committed
Fix build
1 parent 46f2ff5 commit d77ae17

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/.ubuntu.yml

+2-12
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,11 @@ jobs:
2424
(github.event_name == 'workflow_dispatch' ||
2525
(github.event_name == 'schedule' && github.repository == 'tezc/sc')) && !contains(github.event.inputs.skip, 'ubuntu')
2626
name: Build on Ubuntu
27-
28-
strategy:
29-
fail-fast: false
30-
matrix:
31-
compiler: gcc
3227
steps:
3328
- uses: actions/checkout@v2.1.0
3429
- name: build
3530
env:
36-
CC: ${{ matrix.compiler }}
31+
CC: gcc
3732
run: |
3833
sudo apt update
3934
sudo apt-get install valgrind cmake
@@ -58,16 +53,11 @@ jobs:
5853
(github.event_name == 'workflow_dispatch' ||
5954
(github.event_name == 'schedule' && github.repository == 'tezc/sc')) && !contains(github.event.inputs.skip, 'ubuntu')
6055
name: Build on Ubuntu
61-
62-
strategy:
63-
fail-fast: false
64-
matrix:
65-
compiler: clang
6656
steps:
6757
- uses: actions/checkout@v2.1.0
6858
- name: build
6959
env:
70-
CC: ${{ matrix.compiler }}
60+
CC: clang
7161
run: |
7262
sudo apt update
7363
sudo apt-get install valgrind cmake

0 commit comments

Comments
 (0)