From 60901c5c0640812837cb7995ec97183a82be9481 Mon Sep 17 00:00:00 2001 From: Glenn Fiedler Date: Tue, 26 Dec 2023 11:36:36 -0500 Subject: [PATCH] go --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d47b6189..85d0f435 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,13 @@ jobs: - name: Setup premake uses: abel0b/setup-premake@v1 - ## Linux & MacOS-specific build steps + # Install libsodium from apt and configure the compiler to look for our local mbedtls + - name: Setup (Linux) + if: runner.os == 'Linux' + run: | + sudo apt-get install libsodium-dev + + ## Linux & MacOS-specific build steps # Build with premake + make - name: Build (gmake) if: runner.os != 'Windows'