Skip to content

Commit a718d1e

Browse files
committed
ci: test with stub-less build
1 parent c73d14f commit a718d1e

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
if: github.ref == 'refs/heads/master'
3535
run: |
3636
mkdir -p pub/files
37-
zip --junk-paths pub/files/comcom64.zip build/src/comcom64.exe
37+
zip --junk-paths pub/files/comcom64.zip src/comcom64.exe
3838
zip --junk-paths pub/files/comcom32.zip 32/comcom32.exe
3939
echo '<a href="files/comcom64.zip">Latest comcom64 build</a><br>' > pub/index.html
4040
echo '<a href="files/comcom32.zip">Latest comcom32 build</a><br>' >> pub/index.html

ci_build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
set -e
44

5-
make -j 9
5+
make deb
6+
sudo dpkg -i ../comcom64*.deb

ci_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ if ! dosemu -td -o boot.log -E ver ; then
1111
exit 1
1212
fi
1313

14-
make 32 -j 9
14+
make both -j 9
1515
ls -l 32/comcom32.exe

ci_test_prereq.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ sudo add-apt-repository ppa:dosemu2/ppa
66
sudo apt update -q
77

88
sudo apt install -y djstub gcc-djgpp dosemu2
9-
make deb
10-
sudo dpkg -i ../comcom64*.deb

0 commit comments

Comments
 (0)