From 61be2f3144763f8977981c6436e2d5f472027ecd Mon Sep 17 00:00:00 2001 From: Critical <39010717+expandpi@users.noreply.github.com> Date: Wed, 11 Sep 2024 12:53:46 +0000 Subject: [PATCH] Update install-arch-test.yml --- .github/workflows/install-arch-test.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/install-arch-test.yml b/.github/workflows/install-arch-test.yml index ab583ca7..93ca8435 100644 --- a/.github/workflows/install-arch-test.yml +++ b/.github/workflows/install-arch-test.yml @@ -14,13 +14,6 @@ jobs: image: athenaos/base-devel:latest options: --privileged steps: - - -name: Send a request to webhook - env: - DISC_ACTION_TOKEN: ${{ secrets.DISC_ACTION_TOKEN }} - run: | - curl -H "Content-Type: application/json" -d "{\"content\": \"Athena install workflow started.\nBranch: ${{ github.ref }}\nCommit: ${{ github.sha }}\"}" $DISC_ACTION_TOKEN - - name: Checkout files uses: actions/checkout@v4 @@ -59,18 +52,3 @@ jobs: curl -o testcases/athenaos/${{env.RELEASE_VERSION}}/test_install_entire_disk_arch_with_xfce_sddm https://raw.githubusercontent.com/Athena-OS/athena/main/tests/test_install_entire_disk_arch_with_xfce_sddm QUICKEMU_WIDTH=1024 QUICKEMU_HEIGHT=768 ./quicktest test_install_entire_disk_arch_with_xfce_sddm athenaos ${{env.RELEASE_VERSION}} rm -rf ./machines/* - - - name: Workflow Test Result - if: always() - env: - DISC_ACTION_TOKEN: ${{ secrets.DISC_ACTION_TOKEN }} - run: | - if [ "${{ job.status }}" == "success" ]; then - STATUS="successful" - else - STATUS="failed" - fi - curl -H "Content-Type: application/json" -d {"content": Athena testing workflow completed with status: $STATUS.\nBranch: ${{ github.ref }}\nCommit: ${{ github.sha }}\"}" $DISC_ACTION_TOKEN - - -