From b0f32d428f475b7f533aff43e4b68d3676126397 Mon Sep 17 00:00:00 2001 From: noopur Date: Fri, 10 Jan 2025 04:17:13 +0000 Subject: [PATCH] Corrected Watermaking to Watermarking Signed-off-by: noopur --- .github/workflows/federated_runtime.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/federated_runtime.yml b/.github/workflows/federated_runtime.yml index c2bfdf6979..4cc5a24671 100644 --- a/.github/workflows/federated_runtime.yml +++ b/.github/workflows/federated_runtime.yml @@ -43,26 +43,26 @@ jobs: - name: Activate and run the director in background run: | ps -ef| grep -e "director start" -e "envoy start" - cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking + cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking fx experimental activate cd director nohup ./start_director.sh &> director.log & - name: Run the envoy Bangalore in background run: | - cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking + cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking cd Bangalore nohup ./start_envoy.sh Bangalore Bangalore_config.yaml &> bangalore.log & - name: Run the envoy Chandler in background run: | - cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking + cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking cd Chandler nohup ./start_envoy.sh Chandler Chandler_config.yaml &> chandler.log & - name: Check if envoys are connected to the director run: | - cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking + cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking timeout=60 connected=false while [ $timeout -gt 0 ]; do @@ -86,13 +86,13 @@ jobs: - name: Run Notebook run: | ps -ef| grep -e "director start" -e "envoy start" - cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking/workspace + cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking/workspace jupyter nbconvert --execute --to notebook ./MNIST_Watermarking.ipynb echo "Notebook run completed" - name: Check if the experiment was successful using logs run: | - cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking + cd openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking if grep "End of Federation reached." ./Bangalore/bangalore.log; then echo "Process for Bangalore envoy is successful" @@ -114,11 +114,11 @@ jobs: if: ${{ always() }} # collect artifacts regardless of failures run: | tar -cvf notebook.tar \ - ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking/workspace/MNIST_Watermarking.nbconvert.ipynb \ - ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking/workspace/MNIST_Watermarking.ipynb \ - ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking/director/director.log \ - ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking/Bangalore/bangalore.log \ - ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermaking/Chandler/chandler.log \ + ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking/workspace/MNIST_Watermarking.nbconvert.ipynb \ + ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking/workspace/MNIST_Watermarking.ipynb \ + ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking/director/director.log \ + ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking/Bangalore/bangalore.log \ + ./openfl-tutorials/experimental/workflow/FederatedRuntime/301_MNIST_Watermarking/Chandler/chandler.log \ --ignore-failed-read echo "TAR file created"