Skip to content

Commit

Permalink
Trying to get CI working
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaa committed Mar 9, 2024
1 parent 9351a4b commit 41e216c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Under initial implementation. Not ready for adaption yet.

## Supported platforms

- Linux with g++-13
- Linux with clang-17
- Windows with msvc
- MacOS with g++-13 (Apples outdated clang compiler will not do)
- Linux with g++ 13
- Linux with clang 17
- Windows with msvc 14
- MacOS with g++ 13 (Apples outdated clang compiler will not do)

## Introduction

Expand Down
6 changes: 6 additions & 0 deletions tests/unit_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
#include "gtest/gtest.h"
//#include "mysqlpool/test_helper.h"

#ifdef _MSC_VER
# include <stdlib.h>
// Use _putenv_s when compiled with Microsoft's compiler
# define setenv(key, value, ignore) _putenv_s(key, value)
#endif

using namespace std;
using namespace std::string_literals;
using namespace jgaa::mysqlpool;
Expand Down

0 comments on commit 41e216c

Please sign in to comment.