Skip to content

Commit

Permalink
ci: misc minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl committed Jan 2, 2025
1 parent 8b8ae26 commit b9c09ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ jobs:
Copy-Item sqlite-amalgamation-3470200\sqlite3.h .
Copy-Item sqlite-amalgamation-3470200\sqlite3ext.h .
- name: Build C files
- name: Build C files (Unix)
if: runner.os != 'Windows'
run: cd extensions && make

- name: Build C files (Windows)
if: runner.os == 'Windows'
run: |
& "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
cd extensions && make
Expand Down
2 changes: 2 additions & 0 deletions extensions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ else
endif
endif

$(info OUTPUT=$(OUTPUT))

all: $(OUTPUT)

headers:
Expand Down

0 comments on commit b9c09ef

Please sign in to comment.