[demos] Specify go-sqlite3 version to avoid build error with go 1.16.3

This commit is contained in:
Zheng, Qi 2023-06-02 11:26:24 +08:00 committed by volcano
parent 7790223c52
commit 57ab3f9d9f

@ -7,7 +7,7 @@ NC='\033[0m'
# Install SQLite with occlum-go
rm -f go.mod
occlum-go mod init simple_demo_instance && \
occlum-go get -u -v github.com/mattn/go-sqlite3
occlum-go get -u -v github.com/mattn/go-sqlite3@v1.14.16
# Build the Golang SQLite demo program using the Occlum Golang toolchain (i.e., occlum-go)
occlum-go build -o simple_demo simple_demo.go