We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 901cae1 + 0ecafe6 commit 0d949afCopy full SHA for 0d949af
.github/workflows/example.yml
@@ -0,0 +1,32 @@
1
+name: Example
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-16.04
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Install Dependencies
17
+ run: sudo apt install cmake libboost-filesystem-dev libboost-test-dev gcc
18
+ - name: Print System Information
19
+ run: |
20
+ cmake --version
21
+ g++ --version
22
+ cat /usr/include/boost/version.hpp
23
+ - name: Build
24
25
+ export CXX=g++
26
+ export CC=gcc
27
+ mkdir build && cd build
28
+ cmake ..
29
+ cmake --build . --target inotify_example
30
+ - name: Run example
31
32
+ ./build/example/inotify_example
0 commit comments