From 42b6b97b03639d17a20cd2509145c0d2bb272237 Mon Sep 17 00:00:00 2001 From: yasuyuky Date: Thu, 14 Dec 2023 21:27:51 +0900 Subject: [PATCH 1/2] Update Rust version to 1.74.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 04a5d3a..0e51698 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ description = "SSH authentication with the GitHub team and repo" edition = "2021" license = "MIT" readme = "README.md" -rust-version = "1.73.0" +rust-version = "1.74.0" [dependencies] futures = "0.3" From 8e34a4277258ac0c62c019d82fc25f6a0b6ce678 Mon Sep 17 00:00:00 2001 From: yasuyuky Date: Fri, 15 Dec 2023 07:52:32 +0900 Subject: [PATCH 2/2] Fix file path in setup-host-deb --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 5574389..d48e3ce 100644 --- a/test/Makefile +++ b/test/Makefile @@ -74,8 +74,8 @@ create-test-conf-env: @echo "gid = 2022" >> testconf.toml setup-host-deb: - docker cp ../target/$(target)/debian/sectora_$(VERSION)_*.deb host:/tmp/ - docker exec host sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -y /tmp/sectora_$(VERSION)_*.deb" + docker cp ../target/$(target)/debian/sectora_$(VERSION)*.deb host:/tmp/ + docker exec host sh -c "DEBIAN_FRONTEND=noninteractive apt-get install -y /tmp/sectora_$(VERSION)*.deb" docker cp ./testconf.toml host:/etc/sectora.conf time docker exec host systemctl start sectora time docker exec host systemctl restart ssh