Skip to content

Commit 3f18117

Browse files
authored
Merge pull request #241 from kfysck/actions
Actions
2 parents b58922f + 4de6c50 commit 3f18117

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/building.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: building
2+
3+
on: push
4+
5+
jobs:
6+
building:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v5.0.0
10+
11+
- name: Install dependency
12+
run: |
13+
sudo apt update
14+
sudo apt install -y libmxml-dev g++ gcc cmake zlib1g-dev libnsl-dev
15+
shell: bash
16+
17+
- name: cmake project
18+
run: |
19+
cd ${{github.workspace}}
20+
mkdir build
21+
cd build
22+
cmake ../
23+
make
24+

0 commit comments

Comments
 (0)