1
0
mirror of https://github.com/containers/youki synced 2024-11-24 01:44:17 +01:00
youki/Makefile

102 lines
3.1 KiB
Makefile
Raw Normal View History

ROOT = $(shell git rev-parse --show-toplevel)
2022-11-29 12:40:26 +01:00
# builds
.PHONY:build
2022-11-29 12:40:26 +01:00
build: youki-release
.PHONY: youki
2022-11-29 12:40:26 +01:00
youki: youki-dev # helper
.PHONY: youki-dev
2022-11-29 12:40:26 +01:00
youki-dev:
./scripts/build.sh -o $(ROOT) -c youki
.PHONY: youki-release
2022-11-29 12:40:26 +01:00
youki-release:
./scripts/build.sh -o $(ROOT) -r -c youki
.PHONY: runtimetest
2022-11-29 12:40:26 +01:00
runtimetest:
./scripts/build.sh -o $(ROOT) -r -c runtimetest
.PHONY: rust-oci-tests-bin
2022-11-29 12:40:26 +01:00
rust-oci-tests-bin:
./scripts/build.sh -o $(ROOT) -r -c integration-test
.PHONY: all
2022-11-29 12:40:26 +01:00
all: youki-release rust-oci-tests-bin runtimetest
# Tests
.PHONY: unittest
2022-11-29 12:40:26 +01:00
unittest:
2022-12-13 09:39:50 +01:00
cd ./crates && LD_LIBRARY_PATH=${HOME}/.wasmedge/lib cargo test --all --all-targets --all-features
2022-11-29 12:40:26 +01:00
.PHONY: featuretest
2022-11-29 12:40:26 +01:00
featuretest:
./scripts/features_test.sh
.PHONY: oci-tests
2022-11-29 12:40:26 +01:00
oci-tests: youki-release
./scripts/oci_integration_tests.sh $(ROOT)
.PHONY: rust-oci-tests
2022-11-29 12:40:26 +01:00
rust-oci-tests: youki-release runtimetest rust-oci-tests-bin
./scripts/rust_integration_tests.sh $(ROOT)/youki
.PHONY: validate-rust-oci-runc
2022-11-29 12:40:26 +01:00
validate-rust-oci-runc: runtimetest rust-oci-tests-bin
2022-03-28 16:03:54 +02:00
./scripts/rust_integration_tests.sh runc
.PHONY: containerd-test
2022-11-29 12:40:26 +01:00
containerd-test: youki-dev
2022-11-22 10:44:26 +01:00
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant up
VAGRANT_VAGRANTFILE=Vagrantfile.containerd2youki vagrant provision --provision-with test
.PHONY: test-oci
2022-11-29 12:40:26 +01:00
test-oci: oci-tests rust-oci-tests
.PHONY: test-all
2022-11-29 12:40:26 +01:00
test-all: unittest featuretest oci-tests containerd-test # currently not doing rust-oci here
.PHONY: test/k3s
test/k3s: bin/k3s
sudo cp /var/lib/rancher/k3s/agent/etc/containerd/config.toml /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl && \
echo 'default_runtime_name = "youki"' | sudo tee -a /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl && \
echo '[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.youki]' | sudo tee -a /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl && \
echo ' runtime_type = "io.containerd.runc.v2"' | sudo tee -a /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl && \
echo ' [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.youki.options]' | sudo tee -a /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl && \
echo ' BinaryName = "$(PWD)/youki"' | sudo tee -a /var/lib/rancher/k3s/agent/etc/containerd/config.toml.tmpl && \
echo "CONTAINERD_NAMESPACE='default'" | sudo tee /etc/systemd/system/k3s-runwasi.service.env && \
echo "NO_PROXY=192.168.0.0/16" | sudo tee -a /etc/systemd/system/k3s-runwasi.service.env && \
sudo systemctl daemon-reload && \
sudo systemctl restart k3s-youki && \
sudo bin/k3s kubectl apply -f tests/k8s/deploy.yaml
sudo bin/k3s kubectl wait deployment nginx-deployment --for condition=Available=True --timeout=90s && \
sudo bin/k3s kubectl get pods -o wide
.PHONY: test/k3s/clean
test/k3s/clean:
sudo bin/k3s-youki-uninstall.sh
2022-11-29 12:40:26 +01:00
# Misc
#
.PHONY: bin/k3s
bin/k3s:
mkdir -p bin && \
curl -sfL https://get.k3s.io | INSTALL_K3S_BIN_DIR=$(PWD)/bin INSTALL_K3S_SYMLINK=skip INSTALL_K3S_NAME=youki sh -
.PHONY: lint
2022-11-29 12:40:26 +01:00
lint:
cargo fmt --all -- --check
cargo clippy --all-targets --all-features -- -D warnings
2022-11-29 12:40:26 +01:00
.PHONY: hack/bpftrace
hack/bpftrace:
BPFTRACE_STRLEN=125 ./hack/debug.bt
.PHONY: clean
2022-11-29 12:40:26 +01:00
clean:
./scripts/clean.sh $(ROOT)