File tree Expand file tree Collapse file tree 1 file changed +34
-3
lines changed Expand file tree Collapse file tree 1 file changed +34
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build :
11
-
12
11
runs-on : ubuntu-latest
13
-
14
12
steps :
15
13
- uses : actions/checkout@v2
16
14
- name : cmake
21
19
run : |
22
20
cd ${{ github.workspace }}/build
23
21
make install -j
24
-
22
+ build-system-simdjson :
23
+ runs-on : ubuntu-latest
24
+ container : ubuntu:22.04
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - name : install dependencies
28
+ run : |
29
+ apt update
30
+ apt -y --no-install-recommends install build-essential cmake libsimdjson-dev
31
+ - name : cmake
32
+ run : |
33
+ rm -rf ${{ github.workspace }}/build
34
+ cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
35
+ - name : make
36
+ run : |
37
+ cd ${{ github.workspace }}/build
38
+ make install -j
39
+ build-source-simdjson :
40
+ runs-on : ubuntu-latest
41
+ steps :
42
+ - uses : actions/checkout@v2
43
+ - name : install simdjson
44
+ uses : actions/checkout@v2
45
+ with :
46
+ repository : simdjson/simdjson
47
+ path : src/simdjson
48
+ - name : cmake
49
+ run : |
50
+ rm -rf ${{ github.workspace }}/build
51
+ cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
52
+ - name : make
53
+ run : |
54
+ cd ${{ github.workspace }}/build
55
+ make install -j
You can’t perform that action at this time.
0 commit comments