forked from cpeditor/cpeditor
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Use Github Actions instead of travis.ci
It's easy to use Github Actions to test on multiple OSs and multiple versions of Qt, so use it instead of travis.ci. SingleApplication submodule URL is also modified in this commit, please change it back after itay-grudev/SingleApplication#90 is merged.
- Loading branch information
Showing
5 changed files
with
33 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "CI: Build Test" | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
strategy: | ||
matrix: | ||
qt_version: [5.12.0, 5.12.6, 5.14.0] | ||
platform: [ubuntu-latest, windows-latest, macos-latest] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Qt | ||
uses: jurplel/[email protected] | ||
with: | ||
version: ${{ matrix.qt_version }} | ||
|
||
- name: get submodules | ||
run: git submodule update --init --recursive | ||
|
||
- name: cmake | ||
run: cmake . | ||
|
||
- name: cmake build | ||
run: cmake --build . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters