Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
c1da9420
Commit
c1da9420
authored
May 24, 2020
by
Oran Agra
Browse files
add CI for 32bit build
parent
adc5df1b
Changes
2
Hide whitespace changes
Inline
Side-by-side
.github/workflows/ci.yml
View file @
c1da9420
...
@@ -3,6 +3,7 @@ name: CI
...
@@ -3,6 +3,7 @@ name: CI
on
:
[
push
,
pull_request
]
on
:
[
push
,
pull_request
]
jobs
:
jobs
:
test-ubuntu-latest
:
test-ubuntu-latest
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
...
@@ -29,3 +30,20 @@ jobs:
...
@@ -29,3 +30,20 @@ jobs:
-
uses
:
actions/checkout@v1
-
uses
:
actions/checkout@v1
-
name
:
make
-
name
:
make
run
:
make
run
:
make
biuld-32bit
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
make
run
:
|
sudo apt-get update && sudo apt-get install libc6-dev-i386
make 32bit
build-libc-malloc
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
make
run
:
make MALLOC=libc
.github/workflows/daily.yml
View file @
c1da9420
...
@@ -5,6 +5,7 @@ on:
...
@@ -5,6 +5,7 @@ on:
-
cron
:
'
0
7
*
*
*'
-
cron
:
'
0
7
*
*
*'
jobs
:
jobs
:
test-jemalloc
:
test-jemalloc
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
timeout-minutes
:
1200
timeout-minutes
:
1200
...
@@ -33,6 +34,21 @@ jobs:
...
@@ -33,6 +34,21 @@ jobs:
-
name
:
module api test
-
name
:
module api test
run
:
./runtest-moduleapi --verbose
run
:
./runtest-moduleapi --verbose
test-32bit
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v1
-
name
:
make
run
:
|
sudo apt-get update && sudo apt-get install libc6-dev-i386
make 32bit
-
name
:
test
run
:
|
sudo apt-get install tcl8.5
./runtest --accurate --verbose
-
name
:
module api test
run
:
./runtest-moduleapi --verbose
test-valgrind
:
test-valgrind
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
timeout-minutes
:
14400
timeout-minutes
:
14400
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment