Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lecrapouille committed Apr 28, 2024
1 parent 53793eb commit 2cb1d0c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ jobs:
sudo make install
- name: Build Zipper
run: |
make download-external-libs
make compile-external-libs
make -j`nproc --all`
make demos -j`nproc --all`
V=1 make download-external-libs
V=1 make compile-external-libs
V=1 make -j`nproc --all`
V=1 make demos -j`nproc --all`
- name: Installation
run: |
sudo make install
sudo make install PREFIX=/usr
- name: Non regression
run: |
cd tests
make -j`nproc --all`
V=1 make -j`nproc --all`
./build/Zipper-UnitTest
- name: Check the demo
run: |
Expand All @@ -57,7 +57,7 @@ jobs:
run: |
git clone https://github.com/Lecrapouille/LinkAgainstMyLibs.git --recurse-submodules --depth=1
cd LinkAgainstMyLibs/Zipper
make -j`nproc --all`
V=1 make -j`nproc --all`
./build/Zipper
ls ziptest.zip /tmp/somefile.txt
cat /tmp/somefile.txt
Expand Down Expand Up @@ -85,15 +85,15 @@ jobs:
sudo make install
- name: Build Zipper
run: |
make download-external-libs
make compile-external-libs
make -j`sysctl -n hw.logicalcpu`
V=1 make download-external-libs
V=1 make compile-external-libs
V=1 make -j`sysctl -n hw.logicalcpu`
# FIXME https://github.com/Lecrapouille/zipper/issues/10
# make demos -j`sysctl -n hw.logicalcpu`
- name: Non regression
run: |
cd tests
make -j`nproc --all`
V=1 make -j`nproc --all`
./build/Zipper-UnitTest
# FIXME https://github.com/Lecrapouille/zipper/issues/10
# - name: Check the demo
Expand All @@ -105,7 +105,7 @@ jobs:
run: |
git clone https://github.com/Lecrapouille/LinkAgainstMyLibs.git --recurse-submodules --depth=1
cd LinkAgainstMyLibs/Zipper
make -j`nproc --all`
V=1 make -j`nproc --all`
./build/Zipper
ls ziptest.zip /tmp/somefile.txt
cat /tmp/somefile.txt
Expand Down

0 comments on commit 2cb1d0c

Please sign in to comment.