Skip to content

Commit

Permalink
Test dep install fix, revert doctest change as it didn't help
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-x90 committed Feb 16, 2024
1 parent 6d027da commit 09e0d33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Configure dependencies
run: |
apt-get update
apt-get install build-essential pkg-config libx11-dev libxcursor-dev \
apt-get install -y build-essential pkg-config libx11-dev libxcursor-dev \
libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev yasm
- name: Set up Python (for SCons)
Expand Down
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env = SConscript("godot-cpp/SConstruct")
# - LINKFLAGS are for linking flags

# tweak this if you want to use different folders, or more folders, to store your source code in.
env.Prepend(CPPPATH=["src/","tests/"])
env.Prepend(CPPPATH=["doctest/","src/","tests/"])
sources = Glob("src/*.cpp")

# If non-release build, compile the test files
Expand Down
2 changes: 1 addition & 1 deletion tests/TestHeader.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#pragma once

#include "../doctest/doctest/doctest.h"
#include <doctest/doctest.h>

int doctest_run(const int, const char *const *);

0 comments on commit 09e0d33

Please sign in to comment.