From 9849d02c85372fb293f75005a70d48571c5ab42f Mon Sep 17 00:00:00 2001 From: George Lemon Date: Fri, 22 Nov 2024 20:37:30 +0200 Subject: [PATCH] fix workflow Signed-off-by: George Lemon --- .github/workflows/test.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 642caf6..3732525 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,16 +22,17 @@ jobs: steps: - uses: actions/checkout@v3 with: - submodules: true + submodules: true # recursive token: ${{ secrets.GITHUB_TOKEN }} - uses: jiro4989/setup-nim-action@v1 with: nim-version: ${{ matrix.nim-version }} repo-token: ${{ secrets.GITHUB_TOKEN }} - run: | - wget https://blend2d.com/download/blend2d-0.11.4.tar.gz - tar zxvf blend2d-0.11.4.tar.gz - cmake blend2d -B blend2d/build -DCMAKE_BUILD_TYPE=Release -DBLEND2D_EMBED=TRUE - cmake --build blend2d/build + cd blend2d-nim/blend2-nim/blend2d/bindings/blend2d_source + git clone https://github.com/asmjit/asmjit 3rdparty/asmjit + mkdir build && cd build + cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=14 -G Ninja + cmake --build . - run: nimble install -Y - - run: nimble test + - run: nimble test \ No newline at end of file