Skip to content

Commit d51072d

Browse files
committed
Initial effort for a Linux build script.
No artifacts saved, just check if there are build errors.
1 parent 13f9e81 commit d51072d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/linux.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Linux C/C++ CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches: [ master ]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: qt
16+
run: sudo apt install premake4 qt5-qmake qtbase5-dev libqt5svg5-dev
17+
- name: admesh
18+
run: git clone https://github.com/udif/admesh.git && cd admesh && ./autogen.sh && ./configure && make && sudo make install
19+
- name: stlsplit
20+
run: git clone https://github.com/admesh/stlsplit && cd stlsplit && premake4 gmake && make && sudo cp stlsplit.h /usr/local/include && sudo cp -P build/libstlsplit.so* /usr/local/lib && sudo ldconfig
21+
- name: qmake
22+
run: qmake
23+
- name: make
24+
run: make
25+

0 commit comments

Comments
 (0)