Skip to content

Commit

Permalink
disable native runner on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 18, 2024
1 parent 9b9a044 commit a975366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ jobs:
COMPILER_OVERRIDE: clang

- name: Run tests (native runner)
if: ${{ !contains(matrix.os, 'windows') }}
run: make c_native_test

- name: Upload coverage reports to Codecov
Expand Down
4 changes: 2 additions & 2 deletions c/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#include "src/p0836.c"

typedef struct {
uint16_t id;
void *(*func)();
uint16_t id;
void *(*func)();
} ProblemRef;

ProblemRef answers[] = {
Expand Down

0 comments on commit a975366

Please sign in to comment.