This commit is contained in:
Martin Rotter 2020-12-08 10:54:12 +01:00
parent d77e5d56b9
commit 3595fa3394
3 changed files with 6 additions and 5 deletions

View File

@ -14,6 +14,7 @@ jobs:
strategy:
matrix:
os: [windows-2019, ubuntu-16.04, macos-10.15]
qmake_args: ["USE_WEBENGINE=true"]
include:
- os: windows-2019
script_name: .\resources\scripts\github-actions\build-windows.ps1
@ -24,4 +25,4 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Compile app
run: ${{ matrix.script_name }}
run: ${{ matrix.script_name }} ${{ matrix.qmake_args }}

View File

@ -1,3 +1,3 @@
#!/bin/bash
echo "testttt"
#!/bin/bash
echo "testttt $1"

View File

@ -1 +1 @@
echo "testttt"
echo "testttt $args[0]"