From ca588f901f5987b8335f380ef8b5dddd7060f75b Mon Sep 17 00:00:00 2001 From: René van Dorst Date: Mon, 21 Aug 2023 20:44:42 +0200 Subject: add embassy-net-adin1110 to .github/ci/doc.sh --- .github/ci/doc.sh | 1 + 1 file changed, 1 insertion(+) (limited to '.github/ci/doc.sh') diff --git a/.github/ci/doc.sh b/.github/ci/doc.sh index 57184dc1d..c317a12e3 100755 --- a/.github/ci/doc.sh +++ b/.github/ci/doc.sh @@ -39,6 +39,7 @@ docserver-builder -i ./embassy-net-wiznet -o webroot/crates/embassy-net-wiznet/g docserver-builder -i ./embassy-net-enc28j60 -o webroot/crates/embassy-net-enc28j60/git.zup docserver-builder -i ./embassy-net-esp-hosted -o webroot/crates/embassy-net-esp-hosted/git.zup docserver-builder -i ./embassy-stm32-wpan -o webroot/crates/embassy-stm32-wpan/git.zup --output-static webroot/static +docserver-builder -i ./embassy-net-adin1110 -o webroot/crates/embassy-net-adin1110/git.zup export KUBECONFIG=/ci/secrets/kubeconfig.yml POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) -- cgit From e11db9fa5934882dbf332aaacb676bbe370c1aa1 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 12 Sep 2023 01:43:57 +0200 Subject: ci: disable stm32 docs build temporarily because it's bringing CI down for some reason. --- .github/ci/doc.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to '.github/ci/doc.sh') diff --git a/.github/ci/doc.sh b/.github/ci/doc.sh index c317a12e3..d889f922d 100755 --- a/.github/ci/doc.sh +++ b/.github/ci/doc.sh @@ -48,8 +48,9 @@ kubectl cp webroot/static $POD:/data # build and upload stm32 last # so that it doesn't prevent other crates from getting docs updates when it breaks. -rm -rf webroot -docserver-builder -i ./embassy-stm32 -o webroot/crates/embassy-stm32/git.zup -POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) -kubectl cp webroot/crates $POD:/data +# temporarily disabled because it's bringing CI down. +#rm -rf webroot +#docserver-builder -i ./embassy-stm32 -o webroot/crates/embassy-stm32/git.zup +#POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) +#kubectl cp webroot/crates $POD:/data -- cgit From 7c77d2bd94afcc5dc174f9b3e5c2ce947c6fabb0 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Fri, 15 Sep 2023 03:43:46 +0200 Subject: ci: reenable stm32 docs. --- .github/ci/doc.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to '.github/ci/doc.sh') diff --git a/.github/ci/doc.sh b/.github/ci/doc.sh index d889f922d..66caa9150 100755 --- a/.github/ci/doc.sh +++ b/.github/ci/doc.sh @@ -49,8 +49,7 @@ kubectl cp webroot/static $POD:/data # build and upload stm32 last # so that it doesn't prevent other crates from getting docs updates when it breaks. -# temporarily disabled because it's bringing CI down. -#rm -rf webroot -#docserver-builder -i ./embassy-stm32 -o webroot/crates/embassy-stm32/git.zup -#POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) -#kubectl cp webroot/crates $POD:/data +rm -rf webroot +docserver-builder -i ./embassy-stm32 -o webroot/crates/embassy-stm32/git.zup +POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) +kubectl cp webroot/crates $POD:/data -- cgit