Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Bisect job for comment id gh626236030
Browse files Browse the repository at this point in the history
X-Bisectbot-Reply-To: github bjorn3/cargo-bisect-rustc-bot#1
  • Loading branch information
bjorn3 committed May 9, 2020
0 parents commit 006f924
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/bisect.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

name: Bisect

on:
- push

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

# https://github.com/actions/cache/issues/133
- name: Fixup owner of ~/.cargo/
# Don't remove the trailing /. It is necessary to follow the symlink.
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/

- name: Cache cargo installed crates
uses: actions/cache@v1.1.2
with:
path: ~/.cargo/bin
key: cargo-installed-crates

- run: cargo install cargo-bisect-rustc || true

- name: Bisect
run: cargo bisect-rustc "--end=2020-04-01" --access=github | grep -v "for x86_64-unknown-linux-gnu" || true

8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "cargo-bisect-bot-job"
version = "0.0.0"
edition = "2018"
publish = false

[dependencies]

2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pub async fn query<'a>(_: &(), _: &(), params: (&(dyn std::any::Any + 'a),) ) {}
fn main() {}

0 comments on commit 006f924

Please sign in to comment.