Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 880 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 880 Bytes

Auto-ReQ

Azure Function app to evaluate failed pipeline runs for flaky failures and automatically requeue runs.

Requirements

Building

cargo build --release

Running Locally

func start Then visit http://localhost:7071/api/Auto-ReQ?name=Foo

Deploying

  1. Build to target linux/x86
rustup target add x86_64-unknown-linux-musl
cargo build --release --target=x86_64-unknown-linux-musl
cp target/x86_64-unknown-linux-musl/release/handler .
  1. Publish to Azure
func azure functionapp publish <FunctionAppName> # TODO find out FunctionAppName!
  1. TODO