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

Move CI to GitHub Actions #72

Open
wants to merge 47 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
e6ddbff
start moving ci to github actions
anp Apr 12, 2020
d02b09d
rename circle config so it stops running
anp Apr 12, 2020
f6f6228
rename config.toml to old name, need to use old toolchain still
anp Apr 12, 2020
9098031
merge fmt and clippy into lint step
anp Apr 12, 2020
305820f
hash correct files
anp Apr 12, 2020
12482ea
checkout submodules
anp Apr 12, 2020
741e000
use action for cargo, configure git for tests
anp Apr 12, 2020
669f234
update runners config
anp Apr 12, 2020
d671b24
see if gha supports a default event
anp Apr 12, 2020
446dfda
oopsie
anp Apr 12, 2020
b827d49
fix criterion clippy lints
anp Apr 12, 2020
223ad1d
try git config globally
anp Apr 12, 2020
4a92ecb
build brotli as a trial
anp Apr 12, 2020
837abb7
see if cargo package names are smart enough now
anp Apr 12, 2020
fc3e1cb
dump job context
anp Apr 12, 2020
9cce9b5
job context not useful
anp Apr 12, 2020
39bfd0d
pull git config to a script so e2e tests are less noisy
anp Apr 12, 2020
67f307d
see if actions-rs/cargo just uses rust-toolchain
anp Apr 12, 2020
0d066b1
attempt uploading an artifact from brotli
anp Apr 12, 2020
3c951ce
add rebalance job, use dollar signs for tempaltes
anp Apr 12, 2020
6aeb81d
remove rebalance from old.yml
anp Apr 12, 2020
e7a6a7e
flesh out rebalance job
anp Apr 12, 2020
3d2a740
update docs
anp Apr 12, 2020
352b523
update screenshot tool deps
anp Apr 12, 2020
d1223f6
rename git config script
anp Apr 12, 2020
64f24bc
only have two runners now
anp Apr 12, 2020
0bac202
remove datadog from build machines
anp Apr 12, 2020
a7683aa
bleh
anp Apr 12, 2020
e8ca29e
delete old.yml
anp Apr 12, 2020
1da7aae
add screenshots and deploy steps
anp Apr 12, 2020
3159133
name steps to improve log output
anp Apr 12, 2020
edf47b9
jobs shouldn't have linebreaks
anp Apr 12, 2020
674a4a7
expand the other benchmarks
anp Apr 12, 2020
b846852
copy/paste fail
anp Apr 12, 2020
193ae29
clean up ci results page
anp Dec 13, 2020
385357d
finish default branch rename
anp Dec 13, 2020
b77018b
add caching to ci jobs
anp Dec 13, 2020
dabf9cb
switch back to old cargo flag
anp Dec 13, 2020
9faee89
move website job to use sample data until prod data is back
anp Dec 13, 2020
5c1196b
cache deps for rebalance job
anp Dec 13, 2020
81f217b
DRY up crate name in jobs
anp Dec 13, 2020
6dfb3a0
shorten ci config by DRYing names
anp Dec 13, 2020
85ee766
get a data dir out before rebalance fails
anp Dec 13, 2020
dbb79c4
clean up warnings
anp Dec 13, 2020
c294bd0
Support rebalancing when a worker is removed.
anp Dec 13, 2020
be3a06a
Update registry to include two runners.
anp Dec 13, 2020
3359d5a
Disable deploy step for now.
anp Dec 13, 2020
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
301 changes: 0 additions & 301 deletions .circleci/config.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/git-commit-config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

# tests rely on git being configured right now
git config --global user.name "lolbench CI"
git config --global user.email "[email protected]"
Loading