Skip to content

Commit fbbf22d

Browse files
committed
ci: Add CI workflow
1 parent aa66e1d commit fbbf22d

File tree

4 files changed

+26
-29
lines changed

4 files changed

+26
-29
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on: [ push, pull_request, workflow_dispatch ]
4+
5+
jobs:
6+
build and test:
7+
name: Build & Test
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Build and run tests
12+
run: >
13+
docker run --rm
14+
-v "${GITHUB_WORKSPACE}:/workspace"
15+
julrich/docker_qt:latest
16+
/bin/bash -c "
17+
cd /workspace
18+
&& g++ --version
19+
&& qmake --version
20+
&& cd tests
21+
&& mkdir _build
22+
&& cd _build
23+
&& cmake -DCMAKE_BUILD_TYPE=Release ..
24+
&& make all
25+
&& ctest --ouput-on-failure
26+
"

.travis.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Updates and adds missing status codes from the IANA registry.
2525
- {C++11} Added missing `Code::xxx_max` enumerator.
2626

2727

28-
2928
---
3029

3130

tests/Dockerfile

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)