Skip to content

Commit cc0bf4a

Browse files
committed
Added a CI test for 'make dist'
1 parent 30fd3ea commit cc0bf4a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/full-check.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,20 @@ jobs:
2929
run: |
3030
rdate 2>&1 | grep Usage
3131
rdate -pn4v ntp.on.br
32+
- name: test_make_dist
33+
run: |
34+
./autogen.sh
35+
./configure
36+
make dist
37+
mkdir test_dist
38+
mv openrdate-*.tar.gz test_dist
39+
cd test_dist
40+
tar -xvf openrdate-*.tar.gz
41+
rm -f openrdate-*.tar.gz
42+
cd openrdate-*
43+
./autogen.sh
44+
./configure
45+
make
46+
sudo make install
47+
sudo make uninstall
48+
make distclean

0 commit comments

Comments
 (0)