From 1666a46b27a713c58907fd474ed90beb847cda82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Isager=20Dalsgar=C3=B0?= Date: Tue, 5 Nov 2024 22:20:30 +0100 Subject: [PATCH] Switch to `bare-make` --- .github/workflows/test.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a41add3..27c725e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,13 +30,9 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - - uses: actions/cache@v4 - with: - path: vendor/libappling/vendor/bare/corestore - key: corestore-${{ matrix.platform }}-${{ matrix.arch }} - uses: actions/setup-node@v4 with: node-version: lts/* - - run: npm install -g bare-dev - - run: bare-dev configure --debug --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} - - run: bare-dev build --debug + - run: npm install -g bare-make + - run: bare-make generate --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} --debug + - run: bare-make build