Compare commits
2 Commits
fc111b7606
...
b06968dca8
| Author | SHA1 | Date |
|---|---|---|
|
|
b06968dca8 | |
|
|
cda58f1605 |
|
|
@ -0,0 +1,12 @@
|
||||||
|
# For building limbo nightlies, including limbo-gui.
|
||||||
|
FROM docker.io/library/fedora:latest
|
||||||
|
|
||||||
|
RUN sudo dnf update -y && \
|
||||||
|
sudo dnf install -y nodejs yarnpkg \
|
||||||
|
openssl-devel curl \
|
||||||
|
just gcc openssh-clients
|
||||||
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||||
|
RUN /bin/bash -c "source $HOME/.cargo/env && rustup update"
|
||||||
|
RUN /bin/bash -c "source $HOME/.cargo/env && rustup toolchain install nightly"
|
||||||
|
RUN /bin/bash -c "source $HOME/.cargo/env && rustup default nightly"
|
||||||
|
RUN /bin/bash -c "source $HOME/.cargo/env && cargo install wasm-pack"
|
||||||
|
|
@ -18,6 +18,7 @@ spec:
|
||||||
ssh-keyscan -H -p 2222 git.jpace121.net >> ~/.ssh/known_hosts
|
ssh-keyscan -H -p 2222 git.jpace121.net >> ~/.ssh/known_hosts
|
||||||
# Use just to run the ci steps.
|
# Use just to run the ci steps.
|
||||||
source ~/.cargo/env
|
source ~/.cargo/env
|
||||||
|
export CARGO_NET_GIT_FETCH_WITH_CLI=true
|
||||||
cd $(workspaces.source.path)
|
cd $(workspaces.source.path)
|
||||||
just ci-build
|
just ci-build
|
||||||
just ci-test
|
just ci-test
|
||||||
Loading…
Reference in New Issue