Skip to content

Commit 7d05b6d

Browse files
ylobankovLeonidVas
authored andcommitted
github-ci: add simple CI based on GitHub actions
- Add new .github/workflows/fast_testing.yml file - Delete old .travis.yml file - Delete old Jenkinsfile script - Delete old test.sh script In the provided workflow we install tarantool (1.10, 2.8, 2.9) and just run tests from the module against it. Closes #150
1 parent 46f409a commit 7d05b6d

File tree

4 files changed

+33
-149
lines changed

4 files changed

+33
-149
lines changed

.github/workflows/fast_testing.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: fast_testing
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
branches:
8+
- 'master'
9+
tags:
10+
- '*'
11+
12+
jobs:
13+
run_tests:
14+
runs-on: ubuntu-latest
15+
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
tarantool:
20+
- '1.10'
21+
- '2.8'
22+
- '2.9'
23+
24+
steps:
25+
- name: Clone the module
26+
uses: actions/checkout@v2
27+
28+
- name: Setup tarantool ${{ matrix.tarantool }}
29+
uses: tarantool/setup-tarantool@v1
30+
with:
31+
tarantool-version: ${{ matrix.tarantool }}
32+
33+
- run: cmake . && make check

.travis.yml

-121
This file was deleted.

Jenkinsfile

-8
This file was deleted.

test.sh

-20
This file was deleted.

0 commit comments

Comments
 (0)