From 5589c18b6bf07740fb8954d8ea8dc0fb2534a65f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 13 Jul 2021 19:38:05 +0300 Subject: [PATCH] ci: add a step to test libsodium --- .github/workflows/ci.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 046a4a5cc0..b7410732fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -700,7 +700,7 @@ jobs: .\v.exe cmd/tools/test_if_v_test_system_works.v .\cmd\tools\test_if_v_test_system_works.exe - name: Make sure running TCC64 instead of TCC32 - run : ./v test .github\workflows\make_sure_ci_run_with_64bit_compiler_test.v + run: ./v test .github\workflows\make_sure_ci_run_with_64bit_compiler_test.v - name: Test ./v doc -v clipboard *BEFORE building tools* run: ./v doc -v clipboard @@ -739,7 +739,7 @@ jobs: .\cmd\tools\test_if_v_test_system_works.exe - name: Make sure running TCC32 instead of TCC64 - run : ./v -stats .github\workflows\make_sure_ci_run_with_32bit_compiler_test.v + run: ./v -stats .github\workflows\make_sure_ci_run_with_32bit_compiler_test.v - name: Test v build-tools run: ./v -W build-tools @@ -851,6 +851,11 @@ jobs: run: ./v test ~/.vmodules/nedpals/vex ## vpm modules - - name: Installing V modules - run: | - ./v install ui + - name: Install UI through VPM + run: ./v install ui + + ## libsodium + - name: Installl libsodium through VPM + run: ./v install libsodium + - name: Test libsodium + run: ./v test ~/.vmodules/libsodium