Skip to content
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

Exploit heuristics & task limit #51

Closed
wants to merge 16 commits into from
Closed
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
12 changes: 2 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,12 @@ jobs:
- image: circleci/postgres:latest
steps:
- checkout
- run:
name: Update dependencies
command: |
cargo install-update -a
- run:
name: Setup database
command: |
dockerize -wait tcp://localhost:5432 -timeout 1m
cd owl-daemon
echo "DATABASE_URL=postgres://root:circle_test@localhost/owl_daemon" > .env
echo "DATABASE_URL=postgres://postgres@localhost/owl_daemon" > .env
diesel database setup
- run:
name: Build
Expand All @@ -32,10 +28,6 @@ jobs:
- restore_cache:
keys:
- deps-{{ .Branch }}
- run:
name: Update dependencies
command: |
cargo install-update -a
- save_cache:
key: deps-{{ .Branch }}-{{ epoch }}
paths:
Expand All @@ -45,7 +37,7 @@ jobs:
command: |
dockerize -wait tcp://localhost:5432 -timeout 1m
cd owl-daemon
echo "DATABASE_URL=postgres://root:circle_test@localhost/owl_daemon" > .env
echo "DATABASE_URL=postgres://postgres@localhost/owl_daemon" > .env
diesel database setup
- restore_cache:
keys:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# Cargo.lock
KSAlpha marked this conversation as resolved.
Show resolved Hide resolved

# These are backup files generated by rustfmt
**/*.rs.bk
Expand Down
Loading