From: Stephen Seo Date: Wed, 11 Sep 2024 04:18:38 +0000 (+0900) Subject: CI: Run unit tests on Release build as well X-Git-Tag: 1.0~41 X-Git-Url: https://git.seodisparate.com/stephenseo/css/fontawesome.min.css?a=commitdiff_plain;h=30e0753ba8267b130a8b671dd3eabd7aa99fb7d6;p=c_simple_http CI: Run unit tests on Release build as well --- diff --git a/.forgejo/workflows/unittest.yml b/.forgejo/workflows/unittest.yml index 599cfb6..597bdd8 100644 --- a/.forgejo/workflows/unittest.yml +++ b/.forgejo/workflows/unittest.yml @@ -18,3 +18,8 @@ jobs: run: make -C c_simple_http - name: Run unit tests run: ./c_simple_http/unit_test + - name: Build Release build + run: make -C c_simple_http clean && make RELEASE=1 -C c_simple_http + - name: Run unit tests on Release build + run: ./c_simple_http/unit_test +