File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -32,19 +32,22 @@ jobs:
32
32
runs-on : ${{ matrix.os }}
33
33
strategy :
34
34
matrix :
35
- os : [ubuntu-18.04]
36
- qt_arch : [gcc_64]
35
+ os : [linux-latest]
36
+ qt_ver : [5.12.6]
37
+ qt_target : [desktop]
37
38
steps :
38
39
- name : Install Qt
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 -y
40
+ uses : jurplel/install-qt-action@v2.0.0
41
+ with :
42
+ version : ${{ matrix.qt_ver }}
43
+ target : ${{ matrix.qt_target }}
41
44
- uses : actions/checkout@v1
42
45
with :
43
46
fetch-depth : 1
44
- - name : Build Project
47
+ - name : build
45
48
run : |
46
49
cd TestExcel
47
- qmake
50
+ qmake
48
51
make
49
- ./TestExcel
52
+
50
53
You can’t perform that action at this time.
0 commit comments