File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,13 @@ jobs:
16
16
runs-on : ${{ matrix.os }}
17
17
18
18
steps :
19
+ - uses : ilammy/msvc-dev-cmd@v1
19
20
- uses : actions/checkout@v4
20
21
- uses : actions/setup-go@v5
21
22
with : { go-version: stable }
22
23
23
24
- name : Build
25
+ shell : bash
24
26
run : .github/workflows/repro.sh
25
27
26
28
- uses : actions/attest-build-provenance@v1
Original file line number Diff line number Diff line change 57
57
if : matrix.os == 'ubuntu-latest'
58
58
59
59
- name : Test GORM
60
+ shell : bash
60
61
run : gormlite/test.sh
61
62
62
63
- name : Collect coverage
Original file line number Diff line number Diff line change @@ -16,8 +16,12 @@ cp "$ROOT"/sqlite3/*.patch build/
16
16
curl -# https://www.sqlite.org/src/tarball/sqlite.tar.gz? r=bedrock-3.46 | tar xz
17
17
18
18
cd sqlite
19
- sh configure
20
- make sqlite3.c
19
+ if [[ " $OSTYPE " == " msys" || " $OSTYPE " == " cygwin" ]]; then
20
+ MSYS_NO_PATHCONV=1 nmake /f makefile.msc sqlite3.c
21
+ else
22
+ sh configure
23
+ make sqlite3.c
24
+ fi
21
25
cd ~ -
22
26
23
27
mv sqlite/sqlite3.c build/
You can’t perform that action at this time.
0 commit comments