Skip to content

Commit 70f39be

Browse files
authored
bump CMake version
1 parent 1996cce commit 70f39be

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/test_on_push.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login != 'tarantool'
1212
strategy:
1313
matrix:
14-
tarantool: ["1.10", "2.6", "2.7"]
14+
tarantool: ["2.10"]
1515
fail-fast: false
16-
runs-on: [ubuntu-latest]
16+
runs-on: [ubuntu-22.04]
1717
steps:
18-
- uses: actions/checkout@v2
19-
- uses: tarantool/setup-tarantool@v1
18+
- uses: actions/checkout@v5
19+
- uses: tarantool/setup-tarantool@v4
2020
with:
2121
tarantool-version: ${{ matrix.tarantool }}
2222

@@ -35,5 +35,5 @@ jobs:
3535
sed -i 's/lpeg/lulpeg/g' graphql-lua/graphql-0.0.2-1.rockspec
3636
sed -i "s/local lpeg = require 'lpeg'/local lpeg = require 'lulpeg'/g" graphql-lua/graphql/parse.lua
3737
tarantoolctl rocks make --chdir graphql-lua
38-
tarantoolctl rocks install luatest 0.5.2
38+
tarantoolctl rocks install luatest 1.2.1
3939
.rocks/bin/luatest -v

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
1+
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
22

33
project(luagraphqlparser C CXX)
44

test/parse_test.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local parse = function(str)
1111
end
1212

1313
function g.test_parse_comments()
14-
t.assert_error(parse('{a(b:"#")}').definitions, {})
14+
t.assert_not_equals(parse('{a(b:"#")}').definitions, nil)
1515
end
1616

1717
function g.test_parse_document()

0 commit comments

Comments
 (0)