Skip to content

Commit

Permalink
More CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed May 28, 2024
1 parent 38c6fb5 commit 05219e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Set environment variables and build
run: |
$env:Path = "${{github.workspace}}\w64devkit\bin;" + $env:Path
cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_FLAGS="-isystem ${{github.workspace}}\w64devkit\include" -G "MinGW Makefiles"
cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_FLAGS="-isystem ${{github.workspace}}\w64devkit\include" -DCMAKE_C_FLAGS="-isystem ${{github.workspace}}\w64devkit\include" -G "MinGW Makefiles"
cmake --build build --config ${{env.BUILD_TYPE}}
strip ${{github.workspace}}\obsidian.exe
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion source_files/filename_formatter/lex.yy.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ extern char *yytext;
#endif

/*windows compatibility case*/
#ifdef WIN32
#ifdef _WIN32
#include <io.h>
#define isatty _isatty
#define fileno _fileno
Expand Down

0 comments on commit 05219e1

Please sign in to comment.