From 532c26ae0f2cb650b797a8d6093c3f16a90b6755 Mon Sep 17 00:00:00 2001 From: Simon LUCIDO Date: Mon, 23 Oct 2023 13:36:51 +0200 Subject: [PATCH 1/2] chore: change docker organization name Signed-off-by: Simon LUCIDO --- .github/workflows/release.yaml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4e80269..cca4348 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,7 +31,7 @@ jobs: uses: docker/metadata-action@v4 with: images: | - dopolytech2021/lambdo + faastrt/lambdo tags: | type=ref,event=tag type=semver,pattern={{version}} @@ -57,7 +57,7 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: dopolytech2021/lambdo + repository: faastrt/lambdo short-description: A Serverless runtime in Rust create-github-release: runs-on: ubuntu-latest diff --git a/README.md b/README.md index de6176d..a5e8698 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ $ docker run -it --privileged -p 3000:3000 \ -v /path/to/config:/etc/lambdo/config.yaml \ -v /path/to/initramfs:/var/lib/lambdo/initramfs \ -v /path/to/kernel:/var/lib/lambdo/kernel/vmlinux.bin \ - dopolytech2021/lambdo + faastrt/lambdo ``` If you want to run `lambdo` for a test, you can use the `docker-compose` file that will use the `examples/node` folder as configuration folder. From c2d13f39ec42b645b7074ef7fa67a34096be9c57 Mon Sep 17 00:00:00 2001 From: Simon LUCIDO Date: Tue, 24 Oct 2023 09:47:05 +0200 Subject: [PATCH 2/2] chore: update lumper version Signed-off-by: Simon LUCIDO --- .github/workflows/release.yaml | 2 -- api/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cca4348..02d31b6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,8 +4,6 @@ on: create: tags: - "v*" - branches: - - main env: CARGO_TERM_COLOR: always diff --git a/api/Cargo.toml b/api/Cargo.toml index 66b2c2d..927352d 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -16,7 +16,7 @@ anyhow = "1.0.62" clap = { version="4.1.6", features=["derive"] } serde_yaml = "0.9" env_logger = "0.10.0" -lumper = { git = "https://github.com/do4-2022/lumper.git", rev = "5305a5d970ddcd331f5e6a82e2db313bbb7a6a33" } +lumper = { git = "https://github.com/faast-rt/lumper.git", rev = "81366eb" } [dependencies.uuid] version = "1.3.0"