Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
0381f14a
Commit
0381f14a
authored
Oct 20, 2019
by
Guy Korland
Browse files
add CI action
parent
1ac30300
Changes
3
Hide whitespace changes
Inline
Side-by-side
.circleci/config.yml
deleted
100644 → 0
View file @
1ac30300
version
:
2
jobs
:
build
:
docker
:
-
image
:
circleci/buildpack-deps
steps
:
-
checkout
-
run
:
name
:
Install dependency
command
:
sudo apt-get install -y tcl
-
run
:
name
:
Build
command
:
make
-
run
:
name
:
Test
command
:
make test
.github/pull.yml
deleted
100644 → 0
View file @
1ac30300
version
:
"
1"
rules
:
-
base
:
unstable
upstream
:
antirez:unstable
mergeMethod
:
merge
-
base
:
5.0
upstream
:
antirez:5.0
mergeMethod
:
merge
-
base
:
4.0
upstream
:
antirez:4.0
mergeMethod
:
merge
-
base
:
3.2
upstream
:
antirez:3.2
mergeMethod
:
merge
.github/workflows/ci.yml
0 → 100644
View file @
0381f14a
name
:
CI
on
:
[
push
,
pull_request
]
jobs
:
build-ubuntu
:
strategy
:
matrix
:
platform
:
[
ubuntu-latest
,
ubuntu-16.04
]
runs-on
:
${{ matrix.platform }}
steps
:
-
uses
:
actions/checkout@v1
-
name
:
make
run
:
make
-
name
:
test
run
:
|
sudo apt-get install tcl8.5
make test
build-macos-latest
:
strategy
:
matrix
:
platform
:
[
macos-latest
,
macOS-10.14
]
runs-on
:
${{ matrix.platform }}
steps
:
-
uses
:
actions/checkout@v1
-
name
:
make
run
:
make
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