8000 Updated Dat and Added context aware DB methods by cbelsole · Pull Request #142 · homelight/worksheets · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Updated Dat and Added context aware DB methods #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 45 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ shared: &run_steps
timeout: 5

# postgres
- run: sudo apt-get update
- run: sudo apt install postgresql-client
- run: psql ws_test ws_user -h localhost -p 5432 -f /go/src/github.com/helloeave/worksheets/schema.sql
- run: psql ws_test ws_user -h localhost -p 5432 -f /go/src/github.com/homelight/worksheets/schema.sql

# golang
- run: go get -v -t -d ./...
Expand All @@ -27,17 +28,59 @@ jobs:
POSTGRES_DB: ws_test
POSTGRES_PASSWORD: ""

working_directory: /go/src/github.com/helloeave/worksheets
working_directory: /go/src/github.com/homelight/worksheets
<<: *run_steps

buildGo1.14:
docker:
- image: circleci/golang:1.14
- image: circleci/postgres:9.6-alpine
environment:
POSTGRES_USER: ws_user
POSTGRES_DB: ws_test
POSTGRES_PASSWORD: ""

working_directory: /go/src/github.com/homelight/worksheets
<<: *run_steps

buildGo1.15:
docker:
- image: circleci/golang:1.15
- image: circleci/postgres:9.6-alpine
environment:
POSTGRES_USER: ws_user
POSTGRES_DB: ws_test
POSTGRES_PASSWORD: ""

working_directory: /go/src/github.com/homelight/worksheets
<<: *run_steps

buildGo1.16:
docker:
- image: circleci/golang:1.16
- image: circleci/postgres:9.6-alpine
environment:
POSTGRES_USER: ws_user
POSTGRES_DB: ws_test
POSTGRES_PASSWORD: ""

working_directory: /go/src/github.com/homelight/worksheets
<<: *run_steps

workflows:
version: 2
build_on_git_push:
jobs:
- buildGo1.13
- buildGo1.14
- buildGo1.15
- buildGo1.16
build_nightly:
jobs:
- buildGo1.13
- buildGo1.14
- buildGo1.15
- buildGo1.16
triggers:
- schedule:
cron: "0 0 * * *"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fuzz: clean
go-fuzz-build github.com/helloeave/worksheets/fuzz
go-fuzz-build github.com/homelight/worksheets/fuzz
go-fuzz -bin=./worksheets-fuzz.zip -workdir=fuzz/

clean:
Expand Down
Loading
0