Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gauthier Quesnel
irritator
Commits
f7ee0672
Unverified
Commit
f7ee0672
authored
Jun 18, 2021
by
Gauthier Quesnel
Committed by
GitHub
Jun 18, 2021
Browse files
github: add macos script (#51)
parent
26fe444d
Changes
2
Hide whitespace changes
Inline
Side-by-side
.github/workflows/macos.yml
0 → 100644
View file @
f7ee0672
name
:
MacOS
on
:
push
:
branches
:
[
master
,
test
]
pull_request
:
branches
:
[
master
,
test
]
env
:
CC
:
clang
CXX
:
clang++
jobs
:
build
:
runs-on
:
macos-latest
strategy
:
matrix
:
BUILD_TYPE
:
[
Debug
,
Release
]
steps
:
-
name
:
Checkout repository and submodule
uses
:
actions/checkout@v2
with
:
submodules
:
recursive
-
name
:
Install dependencies
run
:
brew install glew glfw
-
name
:
Configure CMake
run
:
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}}
-
name
:
Build
run
:
cmake --build ${{github.workspace}}/build --config ${{matrix.BUILD_TYPE}}
-
name
:
Test
working-directory
:
${{github.workspace}}/build
run
:
ctest -C ${{matrix.BUILD_TYPE}} --rerun-failed --output-on-failure
lib/test/public-api.cpp
View file @
f7ee0672
...
...
@@ -1069,7 +1069,7 @@ main()
irt
::
reader
r
(
is
);
expect
(
irt
::
is_bad
(
r
(
sim
,
srcs
)));
expect
(
r
.
line_error
()
==
3
);
expect
(
r
.
column_error
()
=
=
2
2
);
expect
(
r
.
column_error
()
<
=
2
3
);
/* linux/win: 22 macos: 23 */
expect
(
r
.
model_error
==
0
);
expect
(
r
.
connection_error
==
0
);
...
...
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