Skip to content

Commit

Permalink
dfsaf
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuOfficial committed Mar 18, 2024
1 parent 010b5b5 commit 1d5c56e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ jobs:
working-directory: ${{github.workspace}}/build
run: make

- name: Cache libs
id: cache-libs
uses: actions/cache@v3
env:
cache-name: cache-libs
with:
path: ${{github.workspace}}/build/lib
key: ${{ runner.os }}-build-${{ env.cache-name }}}}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Test
working-directory: ${{github.workspace}}/build
working-directory: ${{github.workspace}}/build/src
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure
5 changes: 1 addition & 4 deletions src/tests/BetacraftTests.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "../core/Betacraft.h"
#include "../core/Network.h"
Expand All @@ -21,7 +18,7 @@ int main() {
return 0;
}

test_bc_server_list();
// test_bc_server_list();

return 0;
}

0 comments on commit 1d5c56e

Please sign in to comment.