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

Fix/fix ci #9

Merged
merged 2 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
create:
tags:
- "v*"
branches:
- main

env:
CARGO_TERM_COLOR: always
Expand All @@ -31,7 +29,7 @@ jobs:
uses: docker/metadata-action@v4
with:
images: |
dopolytech2021/lambdo
faastrt/lambdo
tags: |
type=ref,event=tag
type=semver,pattern={{version}}
Expand All @@ -57,7 +55,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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading