File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -32,22 +32,18 @@ jobs:
32
32
runs-on : ${{ matrix.os }}
33
33
strategy :
34
34
matrix :
35
- os : [ubuntu-latest]
36
- qt_ver : [5.12.6]
37
- qt_target : [desktop]
35
+ os : [ubuntu-18.04]
36
+ qt_arch : [gcc_64]
38
37
steps :
39
38
- name : Install Qt
40
- uses : jurplel/install-qt-action@v2.0.0
41
- with :
42
- version : ${{ matrix.qt_ver }}
43
- target : ${{ matrix.qt_target }}
39
+ run : |
40
+ sudo apt-get install build-essential libfontconfig1 mesa-common-dev libglu1-mesa-dev cmake qtdeclarative5-dev qml-module-qtquick-controls qtbase5-dev qtcreator qt5-default libqt5serialport5-dev qtbase5-private-dev qtdeclarative5-private-dev mesa-common-dev -y
44
41
- uses : actions/checkout@v1
45
42
with :
46
43
fetch-depth : 1
47
- - name : build
44
+ - name : Build Project
48
45
run : |
49
46
cd TestExcel
50
- qmake
47
+ qmake
51
48
make
52
-
53
-
49
+ ./TestExcel
You can’t perform that action at this time.
0 commit comments