File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 3
3
on : [push, pull_request]
4
4
5
5
jobs :
6
+
6
7
test-ubuntu-latest :
7
8
runs-on : ubuntu-latest
8
9
steps :
29
30
- uses : actions/checkout@v1
30
31
- name : make
31
32
run : make
33
+
34
+ biuld-32bit :
35
+ runs-on : ubuntu-latest
36
+ steps :
37
+ - uses : actions/checkout@v1
38
+ - name : make
39
+ run : |
40
+ sudo apt-get update && sudo apt-get install libc6-dev-i386
41
+ make 32bit
42
+
43
+ build-libc-malloc :
44
+ runs-on : ubuntu-latest
45
+ steps :
46
+ - uses : actions/checkout@v1
47
+ - name : make
48
+ run : make MALLOC=libc
49
+
Original file line number Diff line number Diff line change 5
5
- cron : ' 0 7 * * *'
6
6
7
7
jobs :
8
+
8
9
test-jemalloc :
9
10
runs-on : ubuntu-latest
10
11
timeout-minutes : 1200
33
34
- name : module api test
34
35
run : ./runtest-moduleapi --verbose
35
36
37
+ test-32bit :
38
+ runs-on : ubuntu-latest
39
+ steps :
40
+ - uses : actions/checkout@v1
41
+ - name : make
42
+ run : |
43
+ sudo apt-get update && sudo apt-get install libc6-dev-i386
44
+ make 32bit
45
+ - name : test
46
+ run : |
47
+ sudo apt-get install tcl8.5
48
+ ./runtest --accurate --verbose
49
+ - name : module api test
50
+ run : ./runtest-moduleapi --verbose
51
+
36
52
test-valgrind :
37
53
runs-on : ubuntu-latest
38
54
timeout-minutes : 14400
You can’t perform that action at this time.
0 commit comments