-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move from command line to argv array (#216)
* command line -> argv array * update function names * update directory structure --------- Co-authored-by: Roy Qu <[email protected]>
- Loading branch information
Showing
31 changed files
with
1,632 additions
and
701 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: Unit | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
ubuntu_makefile_escape: | ||
name: Unix makefile escape | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup xmake | ||
uses: xmake-io/github-action-setup-xmake@v1 | ||
with: | ||
xmake-version: '2.8.6' | ||
|
||
- name: Setup Qt | ||
uses: ConorMacBride/install-package@v1 | ||
with: | ||
apt: libqt5svg5-dev qtbase5-dev qtbase5-dev-tools qttools5-dev-tools | ||
|
||
- name: Build | ||
run: | | ||
xmake f --qt=/usr | ||
xmake b test-escape | ||
- name: Test | ||
run: | | ||
export QT_ASSUME_STDERR_HAS_CONSOLE=1 | ||
xmake r test-escape |
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 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 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
Oops, something went wrong.