Skip to content

pillargg/relay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-lambda-relay

HTTP relay for AWS Lambda.

GitHub Actions CI status

Build

Building on x86_64-*-linux-gnu

cargo build --release

Building with Docker

  1. Add toolchain target x86_64-unknown-linux-gnu.

    rustup target add x86_64-unknown-linux-gnu
  2. Build using the official Rust image.

    docker run \
      --rm \
      --platform linux/amd64 \
      --user "$(id -u):$(id -g)" \
      --volume "${PWD}:/usr/src/relay" \
      --workdir '/usr/src/relay' \
      rust:latest \
      cargo build --release --target x86_64-unknown-linux-gnu

Test

Unit tests

cargo test --release

Integration tests

TODO

Dependencies

Releases

No releases published

Packages

No packages published