2023-06-05 18:24:33 +02:00
|
|
|
alias build := youki-release
|
|
|
|
alias youki := youki-dev
|
|
|
|
|
2023-06-09 14:55:03 +02:00
|
|
|
KIND_CLUSTER_NAME := 'youki'
|
2023-06-05 18:24:33 +02:00
|
|
|
|
2023-06-19 14:21:18 +02:00
|
|
|
cwd := justfile_directory()
|
|
|
|
|
2023-06-05 18:24:33 +02:00
|
|
|
# build
|
|
|
|
|
|
|
|
# build all binaries
|
|
|
|
build-all: youki-release rust-oci-tests-bin runtimetest
|
|
|
|
|
|
|
|
# build youki in dev mode
|
|
|
|
youki-dev:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/build.sh -o {{ cwd }} -c youki
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# build youki in release mode
|
|
|
|
youki-release:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/build.sh -o {{ cwd }} -r -c youki
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# build runtimetest binary
|
|
|
|
runtimetest:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/build.sh -o {{ cwd }} -r -c runtimetest
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# build rust oci tests binary
|
|
|
|
rust-oci-tests-bin:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/build.sh -o {{ cwd }} -r -c integration-test
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# Tests
|
|
|
|
|
2023-08-03 07:33:27 +02:00
|
|
|
# run integration tests
|
|
|
|
test-integration: test-oci rust-oci-tests
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# run all tests except rust-oci
|
2023-08-30 19:07:07 +02:00
|
|
|
test-all: test-basic test-features test-oci containerd-test # currently not doing rust-oci here
|
2023-08-03 07:33:27 +02:00
|
|
|
|
|
|
|
# run basic tests
|
|
|
|
test-basic: test-unit test-doc
|
|
|
|
|
|
|
|
# run cargo unit tests
|
|
|
|
test-unit:
|
2023-09-25 08:42:25 +02:00
|
|
|
LD_LIBRARY_PATH=${HOME}/.wasmedge/lib cargo test --lib --bins --all --all-targets --all-features --no-fail-fast
|
2023-06-05 18:24:33 +02:00
|
|
|
|
2023-08-03 07:33:11 +02:00
|
|
|
# run cargo doc tests
|
|
|
|
test-doc:
|
|
|
|
cargo test --doc
|
2023-06-05 18:24:33 +02:00
|
|
|
|
2023-06-19 14:21:18 +02:00
|
|
|
# run permutated feature compilation tests
|
2023-06-22 13:35:23 +02:00
|
|
|
test-features:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/features_test.sh
|
2023-06-05 18:24:33 +02:00
|
|
|
|
2023-06-22 13:35:23 +02:00
|
|
|
# run test against musl target
|
|
|
|
test-musl:
|
|
|
|
{{ cwd }}/scripts/musl_test.sh
|
|
|
|
|
2023-08-03 07:33:27 +02:00
|
|
|
# run oci integration tests through runtime-tools
|
|
|
|
test-oci:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/oci_integration_tests.sh {{ cwd }}
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# run rust oci integration tests
|
|
|
|
rust-oci-tests: youki-release runtimetest rust-oci-tests-bin
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/rust_integration_tests.sh {{ cwd }}/youki
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# validate rust oci integration tests on runc
|
|
|
|
validate-rust-oci-runc: runtimetest rust-oci-tests-bin
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/rust_integration_tests.sh runc
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# run containerd integration tests
|
|
|
|
containerd-test: youki-dev
|
2023-06-09 14:55:03 +02:00
|
|
|
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant up
|
|
|
|
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant provision --provision-with test
|
|
|
|
|
|
|
|
[private]
|
|
|
|
kind-cluster: bin-kind
|
|
|
|
#!/usr/bin/env bash
|
2023-06-19 14:21:18 +02:00
|
|
|
set -euo pipefail
|
2023-06-09 14:55:03 +02:00
|
|
|
|
|
|
|
mkdir -p tests/k8s/_out/
|
|
|
|
docker buildx build -f tests/k8s/Dockerfile --iidfile=tests/k8s/_out/img --load .
|
|
|
|
image=$(cat tests/k8s/_out/img)
|
|
|
|
bin/kind create cluster --name {{ KIND_CLUSTER_NAME }} --image=$image
|
|
|
|
|
|
|
|
# run youki with kind
|
|
|
|
test-kind: kind-cluster
|
|
|
|
kubectl --context=kind-{{ KIND_CLUSTER_NAME }} apply -f tests/k8s/deploy.yaml
|
|
|
|
kubectl --context=kind-{{ KIND_CLUSTER_NAME }} wait deployment nginx-deployment --for condition=Available=True --timeout=90s
|
|
|
|
kubectl --context=kind-{{ KIND_CLUSTER_NAME }} get pods -o wide
|
|
|
|
kubectl --context=kind-{{ KIND_CLUSTER_NAME }} delete -f tests/k8s/deploy.yaml
|
|
|
|
|
|
|
|
# Bin
|
|
|
|
|
|
|
|
[private]
|
|
|
|
bin-kind:
|
|
|
|
docker buildx build --output=bin/ -f tests/k8s/Dockerfile --target kind-bin .
|
|
|
|
|
|
|
|
# Clean
|
|
|
|
|
|
|
|
# Clean kind test env
|
2023-09-25 08:42:25 +02:00
|
|
|
clean-test-kind:
|
2023-06-09 14:55:03 +02:00
|
|
|
kind delete cluster --name {{ KIND_CLUSTER_NAME }}
|
2023-06-05 18:24:33 +02:00
|
|
|
|
2023-06-07 07:33:25 +02:00
|
|
|
# misc
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# run bpftrace hack
|
|
|
|
hack-bpftrace:
|
|
|
|
BPFTRACE_STRLEN=120 ./hack/debug.bt
|
|
|
|
|
2023-07-31 17:14:44 +02:00
|
|
|
# a hacky benchmark method we have been using casually to compare performance
|
|
|
|
hack-benchmark:
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
hyperfine \
|
|
|
|
--prepare 'sudo sync; echo 3 | sudo tee /proc/sys/vm/drop_caches' \
|
|
|
|
--warmup 10 \
|
|
|
|
--min-runs 100 \
|
|
|
|
'sudo {{ cwd }}/youki create -b tutorial a && sudo {{ cwd }}/youki start a && sudo {{ cwd }}/youki delete -f a'
|
|
|
|
|
2023-06-05 18:24:33 +02:00
|
|
|
# run linting on project
|
|
|
|
lint:
|
|
|
|
cargo fmt --all -- --check
|
2023-06-07 07:33:25 +02:00
|
|
|
cargo clippy --all --all-targets --all-features -- -D warnings
|
|
|
|
|
2023-06-08 06:49:17 +02:00
|
|
|
# run spellcheck
|
|
|
|
spellcheck:
|
|
|
|
typos
|
|
|
|
|
2023-06-07 07:33:25 +02:00
|
|
|
# run format on project
|
|
|
|
format:
|
|
|
|
cargo fmt --all
|
2023-06-05 18:24:33 +02:00
|
|
|
|
|
|
|
# cleans up generated artifacts
|
|
|
|
clean:
|
2023-06-19 14:21:18 +02:00
|
|
|
{{ cwd }}/scripts/clean.sh {{ cwd }}
|
2023-06-07 07:33:25 +02:00
|
|
|
|
2023-06-08 06:49:17 +02:00
|
|
|
# install tools used in dev
|
|
|
|
dev-prepare:
|
|
|
|
cargo install typos-cli
|
|
|
|
|
2023-06-09 19:34:23 +02:00
|
|
|
# setup dependencies in CI
|
2023-06-07 07:33:25 +02:00
|
|
|
ci-prepare:
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
# Check if system is Ubuntu
|
|
|
|
if [[ -f /etc/lsb-release ]]; then
|
|
|
|
source /etc/lsb-release
|
|
|
|
if [[ $DISTRIB_ID == "Ubuntu" ]]; then
|
|
|
|
echo "System is Ubuntu"
|
2023-06-09 14:55:03 +02:00
|
|
|
apt-get -y update
|
|
|
|
apt-get install -y \
|
2023-06-07 07:33:25 +02:00
|
|
|
pkg-config \
|
|
|
|
libsystemd-dev \
|
|
|
|
build-essential \
|
|
|
|
libelf-dev \
|
|
|
|
libseccomp-dev \
|
|
|
|
libclang-dev \
|
|
|
|
libssl-dev \
|
|
|
|
criu
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Unknown system. The CI is only configured for Ubuntu. You will need to forge your own path. Good luck!"
|
2023-06-09 14:55:03 +02:00
|
|
|
exit 1
|
2023-06-22 13:35:23 +02:00
|
|
|
|
|
|
|
ci-musl-prepare: ci-prepare
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
# Check if system is Ubuntu
|
|
|
|
if [[ -f /etc/lsb-release ]]; then
|
|
|
|
source /etc/lsb-release
|
|
|
|
if [[ $DISTRIB_ID == "Ubuntu" ]]; then
|
|
|
|
echo "System is Ubuntu"
|
|
|
|
apt-get -y update
|
|
|
|
apt-get install -y \
|
|
|
|
musl-dev \
|
|
|
|
musl-tools
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Unknown system. The CI is only configured for Ubuntu. You will need to forge your own path. Good luck!"
|
|
|
|
exit 1
|