Fix z/OS build.

This commit is contained in:
Nuno Cruces
2024-05-06 23:04:17 +01:00
parent 57686a2cf3
commit 34882e7c8d
6 changed files with 9 additions and 5 deletions

View File

@@ -18,4 +18,6 @@ runs:
- name: Git LFS pull
shell: bash
run: git lfs pull
run: |
git lfs pull
git lfs prune

View File

@@ -23,4 +23,5 @@ echo darwin-flock ; GOOS=darwin GOARCH=amd64 go build -tags sqlite3_flock .
echo darwin-noshm ; GOOS=darwin GOARCH=amd64 go build -tags sqlite3_noshm .
echo darwin-nosys ; GOOS=darwin GOARCH=amd64 go build -tags sqlite3_nosys .
echo windows-nosys ; GOOS=windows GOARCH=amd64 go build -tags sqlite3_nosys .
echo freebsd-nosys ; GOOS=freebsd GOARCH=amd64 go build -tags sqlite3_nosys .
echo freebsd-nosys ; GOOS=freebsd GOARCH=amd64 go build -tags sqlite3_nosys .
echo solaris-flock ; GOOS=solaris GOARCH=amd64 go build -tags sqlite3_flock .