Skip to content

Commit f750115

Browse files
authored
Update and rename ccpp.yml to full-check.yml
1 parent bbaffbe commit f750115

File tree

2 files changed

+32
-24
lines changed

2 files changed

+32
-24
lines changed

.github/workflows/ccpp.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/full-check.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
24+
./autogen.sh
25+
./configure
26+
make
27+
sudo make install
28+
- name: run_program
29+
run: |
30+
cbm --version
31+
xvfb-run -a cbm &
32+

0 commit comments

Comments
 (0)