From 5b2f6facbfddbf7f273a8aa26aa3d6d0fc45343d Mon Sep 17 00:00:00 2001 From: JeffreyChen <33644111+JE-Chen@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:45:48 +0800 Subject: [PATCH] Remove python 3.8 CI/CD Remove python 3.8 CI/CD --- .github/workflows/dev_python3_8.yml | 32 -------------------------- .github/workflows/stable_python3_8.yml | 32 -------------------------- 2 files changed, 64 deletions(-) delete mode 100644 .github/workflows/dev_python3_8.yml delete mode 100644 .github/workflows/stable_python3_8.yml diff --git a/.github/workflows/dev_python3_8.yml b/.github/workflows/dev_python3_8.yml deleted file mode 100644 index c7650c7..0000000 --- a/.github/workflows/dev_python3_8.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: AutomationEditor Dev Python3.8 - -on: - push: - branches: [ "dev" ] - pull_request: - branches: [ "dev" ] - schedule: - - cron: "0 2 * * *" - -permissions: - contents: read - -jobs: - build_dev_version: - runs-on: windows-2019 - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3.8 - uses: actions/setup-python@v3 - with: - python-version: "3.8" - - name: Update pip wheel setuptools - run: python -m pip install --upgrade --user pip setuptools wheel - - name: Run pip dev_requirements.txt - run: python -m pip install --user -r dev_requirements.txt - - name: Run AutomationEditor With Debug Mode - run: python ./test/unit_test/start_automation/start_automation_test.py - - name: Extend AutomationEditor - run: python ./test/unit_test/start_automation/extend_automation_test.py - diff --git a/.github/workflows/stable_python3_8.yml b/.github/workflows/stable_python3_8.yml deleted file mode 100644 index f76e532..0000000 --- a/.github/workflows/stable_python3_8.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: AutomationEditor Stable Python3.8 - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - schedule: - - cron: "0 2 * * *" - -permissions: - contents: read - -jobs: - build_dev_version: - runs-on: windows-2019 - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3.8 - uses: actions/setup-python@v3 - with: - python-version: "3.8" - - name: Update pip wheel setuptools - run: python -m pip install --upgrade --user pip setuptools wheel - - name: Run pip requirements.txt - run: python -m pip install --user -r requirements.txt - - name: Run AutomationEditor With Debug Mode - run: python ./test/unit_test/start_automation/start_automation_test.py - - name: Extend AutomationEditor - run: python ./test/unit_test/start_automation/extend_automation_test.py -