File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 6161 pkg : ${{ matrix.pkg }}
6262 # For the r-basic check (that runs on many PRs), just check ERRORs
6363 # (e.g., build failure, test failure)
64- error-on : error
64+ error-on : warning
6565 secrets :
6666 SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }}
Original file line number Diff line number Diff line change @@ -23,9 +23,12 @@ CGO_CXX = @cxx@
2323CGO_CFLAGS = $(ALL_CPPFLAGS)
2424GOMAXPROCS = @nproc@
2525
26- .PHONY: all gostatic
27- all: $(SHLIB)
26+ .PHONY: all purify gostatic
27+ all: purify
2828$(SHLIB): gostatic
2929
30+ purify: $(SHLIB)
31+ rm -Rf "$(CURDIR)/go/libadbc_driver_flightsql.a"
32+
3033gostatic:
3134 (cd "$(CURDIR)/go/adbc"; GOMAXPROCS=$(GOMAXPROCS) GOPATH="$(CURDIR)/.go-path" GOCACHE="$(CURDIR)/.go-cache" GOFLAGS=-modcacherw CC="$(CGO_CC)" CXX="$(CGO_CXX)" CGO_CFLAGS="$(CGO_CFLAGS)" CGO_LDFLAGS="$(PKG_LIBS)" "@gobin@" build -v -tags driverlib -o $(CURDIR)/go/libadbc_driver_flightsql.a -buildmode=c-archive "./pkg/flightsql")
You can’t perform that action at this time.
0 commit comments