Skip to content

Commit df415e2

Browse files
committed
fix: use gcc
1 parent f506d77 commit df415e2

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ jobs:
2424
- name: Check out code
2525
uses: actions/checkout@v2
2626

27-
- name: Set up Clang
28-
uses: egor-tensin/setup-clang@v1
27+
- name: Set up build environment
28+
run: |
29+
sudo apt update
30+
sudo apt install -y git wget build-essential
2931
3032
- name: Get dependencies
3133
run: |

.github/workflows/gm.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
- name: Check out code
1717
uses: actions/checkout@v2
1818

19-
- name: Set up Clang
20-
uses: egor-tensin/setup-clang@v1
19+
- name: Set up build environment
20+
run: |
21+
sudo apt update
22+
sudo apt install -y git wget build-essential
2123
2224
- name: Get dependencies
2325
run: sudo apt install -y cpanminus build-essential libncurses5-dev libreadline-dev libssl-dev perl
@@ -31,7 +33,7 @@ jobs:
3133
run: |
3234
# TODO: use a fixed release once they have created one.
3335
# See https://github.com/Tongsuo-Project/Tongsuo/issues/318
34-
git clone https://github.com/api7/tongsuo --depth 1
36+
git clone https://github.com/Tongsuo-Project/Tongsuo -b 8.4.0 --depth 1
3537
pushd tongsuo
3638
./config shared enable-ntls -g --prefix=/usr/local/tongsuo
3739
make -j2

0 commit comments

Comments
 (0)