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.
1 parent bbaffbe commit f750115Copy full SHA for f750115
.github/workflows/ccpp.yml
.github/workflows/full-check.yml
@@ -0,0 +1,32 @@
1
+name: full-check
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: install_dependencies
13
+ run: sudo apt install libbsd-dev xauth xvfb
14
+ - name: first_build
15
+ run: |
16
+ ./autogen.sh
17
+ ./configure
18
+ make
19
+ sudo make install
20
+ sudo make uninstall
21
+ make distclean
22
+ - name: second_build
23
24
25
26
27
28
+ - name: run_program
29
30
+ cbm --version
31
+ xvfb-run -a cbm &
32
0 commit comments