Skip to content

Commit 4112cbb

Browse files
committed
testing github actions
1 parent 47f2731 commit 4112cbb

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/ubuntu.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,22 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
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]
3738
steps:
3839
- 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 }}
4144
- uses: actions/checkout@v1
4245
with:
4346
fetch-depth: 1
44-
- name: Build Project
47+
- name: build
4548
run: |
4649
cd TestExcel
47-
qmake
50+
qmake
4851
make
49-
./TestExcel
52+
5053

0 commit comments

Comments
 (0)