Skip to content

Commit 783d76a

Browse files
committed
Improve CI test
1 parent a643f20 commit 783d76a

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

.github/workflows/full-check.yml

+22-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,26 @@ jobs:
2525
sudo make install
2626
- name: run_program
2727
run: |
28-
dcfldd if=.github/workflows/test.txt of=/tmp/test2.txt hash=md5,sha1,sha256,sha384,sha512
28+
dcfldd if=.github/workflows/test.txt of=/tmp/test2.txt hash=md5,sha1,sha256,sha384,sha512 2>&1 | grep bc0e4b74695142e0a0bdae87aea310d7078866cb
2929
ls -lh /tmp/test2.txt
30-
head -n3 /tmp/test2.txt
31-
30+
head -n3 /tmp/test2.txt | grep -i autopkgtest
31+
- name: test_make_dist
32+
run: |
33+
make distclean
34+
./autogen.sh
35+
./configure
36+
make dist
37+
mkdir test_dist
38+
mv dcfldd-*.tar.gz test_dist
39+
cd test_dist
40+
pwd
41+
tar -xvf dcfldd-*.tar.gz
42+
rm -f dcfldd-*.tar.gz
43+
cd dcfldd-*
44+
./autogen.sh
45+
./configure
46+
make
47+
ls
48+
sudo make install
49+
sudo make uninstall
50+
make distclean

0 commit comments

Comments
 (0)