Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit f6ec9e5

Browse files
authored
CI: add clang 10 and gcc 9
Signed-off-by: sevki <s@sevki.org>
1 parent 1104827 commit f6ec9e5

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/harvey.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: harvey
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-18.04]
16+
cc:
17+
- gcc-9
18+
# - clang
19+
# - clang-9
20+
- clang-10
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: install deps
24+
run: |
25+
sudo add-apt-repository ppa:gophers/archive -y
26+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
27+
sudo add-apt-repository 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main' -y
28+
sudo apt-get update
29+
sudo apt-get install -y --force-yes ${{ matrix.cc }} rc golang-1.11-go
30+
- name: build
31+
env:
32+
ARCH: amd64
33+
CC: ${{ matrix.cc }}
34+
run: ./util/ci.sh

0 commit comments

Comments
 (0)