From 9ca1e69b3c6beb1ec1964c780117974767461173 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Wed, 24 Jul 2024 12:56:27 -0400 Subject: [PATCH] Let's try to build in docker, too. --- .gitea/workflows/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b6b589f6..baa407ea 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -16,5 +16,6 @@ jobs: - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: sudo apt update && sudo apt install -y mingw-w64 - - run: make all -j`nproc` + - run: make all -j`nproc` docs + - run: docker build . - run: echo "🍏 This job's status is ${{ job.status }}."