Skip to content

Commit dcc03bc

Browse files
authored
testing github actions (ubuntu)
1 parent 7aaa6fb commit dcc03bc

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,18 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
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]
3837
steps:
3938
- 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
4441
- uses: actions/checkout@v1
4542
with:
4643
fetch-depth: 1
47-
- name: build
44+
- name: Build Project
4845
run: |
4946
cd TestExcel
50-
qmake
47+
qmake
5148
make
52-
53-
49+
./TestExcel

0 commit comments

Comments
 (0)