From 7e15a2641786736dbf19d11262fcc00ee31a38cc Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 25 Jul 2021 20:24:09 +0530 Subject: [PATCH 01/32] Create main.yml --- .github/workflows/main.yml | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..1434310 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,45 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + pull_request: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Pulling the docker image + run: docker pull vezzal/vezzal:v0 + + - name: Run the docker image + run: docker run -it vezzal/vezzal:v0 bash + + - name: Run the test + run: | + cd /vezzal + ./configure.sh + + + From 30acb8be630a55c249f0304cecc5abe9019e0fdf Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 25 Jul 2021 20:46:41 +0530 Subject: [PATCH 02/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1434310..76972ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: run: docker pull vezzal/vezzal:v0 - name: Run the docker image - run: docker run -it vezzal/vezzal:v0 bash + run: docker run -i vezzal/vezzal:v0 bash - name: Run the test run: | From 376296eda5acf3f19327bb7ce6766d519e19a501 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 25 Jul 2021 20:51:18 +0530 Subject: [PATCH 03/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76972ff..02f0aac 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: run: docker pull vezzal/vezzal:v0 - name: Run the docker image - run: docker run -i vezzal/vezzal:v0 bash + run: docker-compose run -t vezzal/vezzal:v0 bash - name: Run the test run: | From ec8299ea14100fe8132f1654b8215cd1b9060bbb Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 25 Jul 2021 20:53:52 +0530 Subject: [PATCH 04/32] Update main.yml --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 02f0aac..883543c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,8 +38,7 @@ jobs: - name: Run the test run: | - cd /vezzal - ./configure.sh + ../configure.sh From b99fb96259794641a683da63ee273a8cf69bbe8b Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 25 Jul 2021 21:05:53 +0530 Subject: [PATCH 05/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 883543c..7d79b68 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: run: docker pull vezzal/vezzal:v0 - name: Run the docker image - run: docker-compose run -t vezzal/vezzal:v0 bash + run: docker run -i vezzal/vezzal:v0 bash - name: Run the test run: | From 4468d3646217f573a76b563b7d7e0b25ce33c0ae Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 25 Jul 2021 22:04:02 +0530 Subject: [PATCH 06/32] Update main.yml --- .github/workflows/main.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7d79b68..f5d05bb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,23 +22,13 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - # Runs a set of commands using the runners shell - name: Pulling the docker image run: docker pull vezzal/vezzal:v0 - name: Run the docker image - run: docker run -i vezzal/vezzal:v0 bash + run: docker run vezzal/vezzal:v0 - - name: Run the test - run: | - ../configure.sh From e017811239639ba2e298c8a3352af3e041b2f618 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Mon, 26 Jul 2021 09:37:20 +0530 Subject: [PATCH 07/32] Update main.yml --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f5d05bb..3a22dd4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,8 +26,11 @@ jobs: - name: Pulling the docker image run: docker pull vezzal/vezzal:v0 - - name: Run the docker image - run: docker run vezzal/vezzal:v0 + - name: Start the container with the docker image + run: docker run -it --name test_netgen vezzal/vezzal:v0 bash | exit + + - name: Run the testing on the container + run: docker exec test_netgen /vezzal/test_netgen.sh From 4e7588960566e2e2f7266079441e4ab9a22206ea Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Mon, 26 Jul 2021 10:03:23 +0530 Subject: [PATCH 08/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a22dd4..a53a4de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: run: docker pull vezzal/vezzal:v0 - name: Start the container with the docker image - run: docker run -it --name test_netgen vezzal/vezzal:v0 bash | exit + run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - name: Run the testing on the container run: docker exec test_netgen /vezzal/test_netgen.sh From e1a3ae5619b701a08952105abf56b161592ca9e6 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 29 Jul 2021 01:16:57 +0530 Subject: [PATCH 09/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a53a4de..5f03d3f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: - name: Start the container with the docker image run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - - name: Run the testing on the container + - name: Run the testing on the container and sending the mail run: docker exec test_netgen /vezzal/test_netgen.sh From 7f9acf6a1ad975f89a1cadcf7899a38f5b0a25dc Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 29 Jul 2021 19:36:01 +0530 Subject: [PATCH 10/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5f03d3f..c102f62 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: - name: Start the container with the docker image run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - - name: Run the testing on the container and sending the mail + - name: Run the testing on the container and sends the mail run: docker exec test_netgen /vezzal/test_netgen.sh From 7cc69960177a4a608ec1001ab1d53eaa443f3097 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sat, 31 Jul 2021 20:38:41 +0530 Subject: [PATCH 11/32] Update main.yml --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c102f62..b968a8a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,6 +23,9 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Runs a set of commands using the runners shell + - name: Logging into Dockerhub + run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} + - name: Pulling the docker image run: docker pull vezzal/vezzal:v0 From 484cb26eeeb7a49e79caedd7030cce8f114a284d Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sat, 31 Jul 2021 23:50:47 +0530 Subject: [PATCH 12/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b968a8a..667aeed 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - name: Run the testing on the container and sends the mail - run: docker exec test_netgen /vezzal/test_netgen.sh + run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com" ${{ secrets.MAILING_KEY }} From 883755eed30f38d100540e7b6a81fcc863666fe7 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Sun, 1 Aug 2021 00:29:10 +0530 Subject: [PATCH 13/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 667aeed..8c5b263 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: - name: Start the container with the docker image run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - - name: Run the testing on the container and sends the mail + - name: Run the testing on the container and send the mail run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com" ${{ secrets.MAILING_KEY }} From a27ac8c679449da7adeed835b0f413e58cb18fb6 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 21:48:38 +0530 Subject: [PATCH 14/32] Update README --- README | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README b/README index e0b3173..4d03756 100644 --- a/README +++ b/README @@ -1,3 +1,6 @@ +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) + + NETGEN: VERSION 1.5 NETGEN is a general-purpose netlist management system. It can read From f50093e6c618595b6fa9e09eef8c145919051f99 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 21:50:51 +0530 Subject: [PATCH 15/32] Rename README to README.md --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md From 409ce224ad2b0fda56b458d6a1a099d51912f7ed Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 21:52:34 +0530 Subject: [PATCH 16/32] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d03756..cf50165 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) +![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=pull_request) + NETGEN: VERSION 1.5 From f50dfd926196dae30873045f0f3651a1ca1775c0 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 21:52:57 +0530 Subject: [PATCH 17/32] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cf50165..a72a57b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ ![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) + ![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=pull_request) From aeedf5fae951bbe9d2f3076b66b8546869558ab3 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 21:55:39 +0530 Subject: [PATCH 18/32] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a72a57b..c346c68 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) + | +:-------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------: +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) | ![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=pull_request) + + -![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=pull_request) From 9128eeda60c71ab8197f0b4927db36b5893cb41f Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 21:56:30 +0530 Subject: [PATCH 19/32] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index c346c68..bd3bc01 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ - | -:-------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------: -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) | ![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=pull_request) +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) ![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=push) From 9ec613b0cbf22dbcfa33e749862eb570f61d3082 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 22:06:05 +0530 Subject: [PATCH 20/32] Update README.md --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index bd3bc01..b2da1fb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,4 @@ -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) ![Trigger](https://github.com/github/docs/actions/workflows/main.yml/badge.svg?event=push) - - - - - +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) NETGEN: VERSION 1.5 From f76f2e002a464f61e3653105e104be22719aa8bf Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 22:09:18 +0530 Subject: [PATCH 21/32] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2da1fb..7c8580b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/badge.svg) NETGEN: VERSION 1.5 From 67f2801aa1b360524fcd6f2df21964011b086227 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Tue, 3 Aug 2021 22:09:48 +0530 Subject: [PATCH 22/32] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c8580b..b2da1fb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/badge.svg) +![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) NETGEN: VERSION 1.5 From e643563d4e93cccef21f49adc367bb8176e1f999 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 5 Aug 2021 02:42:14 +0530 Subject: [PATCH 23/32] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2da1fb..9ae70bc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) -NETGEN: VERSION 1.5 +#NETGEN: VERSION 1.5 NETGEN is a general-purpose netlist management system. It can read and write several netlist formats, including NTK (Caltech, CMU), From 5ec0db678af16da8c18239cf29e996f5b9631c3e Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 5 Aug 2021 08:18:32 +0530 Subject: [PATCH 24/32] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ae70bc..ee43e15 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) -#NETGEN: VERSION 1.5 +# NETGEN: VERSION 1.5 NETGEN is a general-purpose netlist management system. It can read and write several netlist formats, including NTK (Caltech, CMU), From 30bbc28c1706808fc98f2bd4ef8c214610ca8281 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 5 Aug 2021 08:24:04 +0530 Subject: [PATCH 25/32] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ee43e15..630a722 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ ![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) -# NETGEN: VERSION 1.5 +# NETGEN: + +### VERSION 1.5 NETGEN is a general-purpose netlist management system. It can read and write several netlist formats, including NTK (Caltech, CMU), From 6cc898b34b1b77268f24bd6b3c49fd889d2386fa Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 5 Aug 2021 09:48:44 +0530 Subject: [PATCH 26/32] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 630a722..bc5ed97 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![CI](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) +![Countinous Integration](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) # NETGEN: From e80f70e67ba31b8cbf7d8d2fdd73ff67473d7337 Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 5 Aug 2021 19:36:04 +0530 Subject: [PATCH 27/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8c5b263..aa79655 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - name: Run the testing on the container and send the mail - run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com" ${{ secrets.MAILING_KEY }} + run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com tim@opencircuitdesign.com" ${{ secrets.MAILING_KEY }} From 7b8086fc3ab8c662769a4dab5d542ea8969541bb Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Thu, 5 Aug 2021 19:38:52 +0530 Subject: [PATCH 28/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aa79655..8c5b263 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - name: Run the testing on the container and send the mail - run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com tim@opencircuitdesign.com" ${{ secrets.MAILING_KEY }} + run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com" ${{ secrets.MAILING_KEY }} From 1f9d4317e3a1d56d22c37fb4426506b435fd8cdb Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Fri, 6 Aug 2021 00:19:53 +0530 Subject: [PATCH 29/32] Update main.yml --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8c5b263..f779444 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,8 +23,8 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Runs a set of commands using the runners shell - - name: Logging into Dockerhub - run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} + #- name: Logging into Dockerhub + # run: docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_PASSWORD }} - name: Pulling the docker image run: docker pull vezzal/vezzal:v0 From 903b813821fae0fa37afd98a1bc0f25104f6c98e Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Fri, 6 Aug 2021 20:37:02 +0530 Subject: [PATCH 30/32] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc5ed97..64e47a3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Countinous Integration](https://github.com/lankasaicharan/netgen/actions/workflows/main.yml/badge.svg) -# NETGEN: +# NETGEN ### VERSION 1.5 From bdd7d25943ef7b050e93cb4862171e6bd5694ffa Mon Sep 17 00:00:00 2001 From: Sai Charan Lanka Date: Fri, 6 Aug 2021 20:40:53 +0530 Subject: [PATCH 31/32] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f779444..9f6e686 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: run: docker run -id --name test_netgen vezzal/vezzal:v0 bash | exit - name: Run the testing on the container and send the mail - run: docker exec test_netgen /vezzal/test_netgen.sh "lankasaicharan123@gmail.com" ${{ secrets.MAILING_KEY }} + run: docker exec test_netgen /vezzal/test_netgen.sh "tim@opencircuitdesign.com,lankasaicharan123@gmail.com" ${{ secrets.MAILING_KEY }} From 583cc3a151358df18aa2de5828de7bb28a7565ee Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 6 Aug 2021 11:18:56 -0400 Subject: [PATCH 32/32] Updated VERSION to go along with the merge of pull request #27 from Sai Charan. Subsequent mirror pushes to github should trigger the continuous integration. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a2c5c14..f603663 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.197 +1.5.198