From d2af666513f01215f5041a29037735808a24d1a8 Mon Sep 17 00:00:00 2001 From: MohammaeKamle Date: Tue, 19 Sep 2023 16:29:09 +0530 Subject: [PATCH 1/7] added actions --- .github/workflows/run-hypex.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/run-hypex.yml diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml new file mode 100644 index 0000000..b17cf38 --- /dev/null +++ b/.github/workflows/run-hypex.yml @@ -0,0 +1,25 @@ +name: Run Hyperexecute + +on: + push: + branches: + - main # Change this to your repository's default branch + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up environment + run: | + wget https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute + chmod +x hyperexecute + echo "Performing test" + ./hyperexecute --user $LT_USERNAME --key $LT_ACCESS_KEY --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts + echo "Test completion" + env: + LT_USERNAME: ${{ secrets.LT_USERNAME }} + LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }} From 79e067b44b5d2616b9c4a66498c09e87eb9f0023 Mon Sep 17 00:00:00 2001 From: MohammedKamle <66168802+MohammedKamle@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:32:03 +0530 Subject: [PATCH 2/7] Update run-hypex.yml --- .github/workflows/run-hypex.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml index b17cf38..dc77add 100644 --- a/.github/workflows/run-hypex.yml +++ b/.github/workflows/run-hypex.yml @@ -18,8 +18,5 @@ jobs: wget https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute chmod +x hyperexecute echo "Performing test" - ./hyperexecute --user $LT_USERNAME --key $LT_ACCESS_KEY --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts + ./hyperexecute --user mohammadk --key rakcBoBYHiy8BW7osVi4N1LGYjgJhRfAwvL1pPUvwCA1wfNChd --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts echo "Test completion" - env: - LT_USERNAME: ${{ secrets.LT_USERNAME }} - LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }} From f05fc9867c640ac14d73e2fbfae35e128d4e7eb1 Mon Sep 17 00:00:00 2001 From: MohammedKamle <66168802+MohammedKamle@users.noreply.github.com> Date: Tue, 19 Sep 2023 17:51:01 +0530 Subject: [PATCH 3/7] Update run-hypex.yml --- .github/workflows/run-hypex.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml index dc77add..ff81985 100644 --- a/.github/workflows/run-hypex.yml +++ b/.github/workflows/run-hypex.yml @@ -19,4 +19,4 @@ jobs: chmod +x hyperexecute echo "Performing test" ./hyperexecute --user mohammadk --key rakcBoBYHiy8BW7osVi4N1LGYjgJhRfAwvL1pPUvwCA1wfNChd --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts - echo "Test completion" + echo "Test completion!" From d1efc069860532a93918b4809101fd471b327926 Mon Sep 17 00:00:00 2001 From: MohammaeKamle Date: Wed, 20 Sep 2023 13:08:01 +0530 Subject: [PATCH 4/7] updated yml --- .github/workflows/run-hypex.yml | 2 +- .idea/.gitignore | 3 +++ .idea/compiler.xml | 13 +++++++++++++ .idea/encodings.xml | 7 +++++++ .idea/jarRepositories.xml | 20 ++++++++++++++++++++ .idea/misc.xml | 12 ++++++++++++ .idea/vcs.xml | 6 ++++++ 7 files changed, 62 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml index ff81985..dc77add 100644 --- a/.github/workflows/run-hypex.yml +++ b/.github/workflows/run-hypex.yml @@ -19,4 +19,4 @@ jobs: chmod +x hyperexecute echo "Performing test" ./hyperexecute --user mohammadk --key rakcBoBYHiy8BW7osVi4N1LGYjgJhRfAwvL1pPUvwCA1wfNChd --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts - echo "Test completion!" + echo "Test completion" diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..f7b356c --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..712ab9d --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d31b37a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file From d184c39490c86e8fe69b941b2b8e94f1f273eea1 Mon Sep 17 00:00:00 2001 From: MohammaeKamle Date: Wed, 20 Sep 2023 13:17:14 +0530 Subject: [PATCH 5/7] removed .idea --- .idea/.gitignore | 3 --- .idea/compiler.xml | 13 ------------- .idea/encodings.xml | 7 ------- .idea/jarRepositories.xml | 20 -------------------- .idea/misc.xml | 12 ------------ .idea/vcs.xml | 6 ------ 6 files changed, 61 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/encodings.xml delete mode 100644 .idea/jarRepositories.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 26d3352..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index f7b356c..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index aa00ffa..0000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml deleted file mode 100644 index 712ab9d..0000000 --- a/.idea/jarRepositories.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index d31b37a..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 3c3e15a62c8bb1b988b4330c40b6c943e0fe0761 Mon Sep 17 00:00:00 2001 From: MohammaeKamle Date: Wed, 20 Sep 2023 13:43:41 +0530 Subject: [PATCH 6/7] updated actions --- .github/workflows/run-hypex.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml index dc77add..ff81985 100644 --- a/.github/workflows/run-hypex.yml +++ b/.github/workflows/run-hypex.yml @@ -19,4 +19,4 @@ jobs: chmod +x hyperexecute echo "Performing test" ./hyperexecute --user mohammadk --key rakcBoBYHiy8BW7osVi4N1LGYjgJhRfAwvL1pPUvwCA1wfNChd --config yaml/win/cucumber_hyperexecute_autosplit_sample.yaml --download-artifacts --force-clean-artifacts - echo "Test completion" + echo "Test completion!" From 3af6ac6543144b706263090c8877989499d44a7c Mon Sep 17 00:00:00 2001 From: MohammedKamle <66168802+MohammedKamle@users.noreply.github.com> Date: Fri, 15 Dec 2023 10:41:20 +0530 Subject: [PATCH 7/7] Update run-hypex.yml --- .github/workflows/run-hypex.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-hypex.yml b/.github/workflows/run-hypex.yml index ff81985..06efbe4 100644 --- a/.github/workflows/run-hypex.yml +++ b/.github/workflows/run-hypex.yml @@ -13,7 +13,7 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Set up environment + - name: Set up the environment run: | wget https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute chmod +x hyperexecute