Skip to content

Commit

Permalink
dev(hansbug): remove ci about windows
Browse files Browse the repository at this point in the history
  • Loading branch information
HansBug committed Apr 14, 2023
1 parent f8563f9 commit 48dce11
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 50 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:
matrix:
os:
- 'ubuntu-20.04'
# - 'windows-2019'
- 'macos-12'
python:
- '3.7'
Expand All @@ -73,12 +72,6 @@ jobs:
architecture: x86
- os: ubuntu-20.04
architecture: AMD64
- os: windows-2019
architecture: x86_64
- os: windows-2019
architecture: arm64
- os: windows-2019
architecture: aarch64
- os: macos-12
architecture: aarch64
- os: macos-12
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/release_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
matrix:
os:
- 'ubuntu-20.04'
# - 'windows-2019'
- 'macos-12'
python:
- '3.7'
Expand All @@ -77,12 +76,6 @@ jobs:
architecture: x86
- os: ubuntu-20.04
architecture: AMD64
- os: windows-2019
architecture: x86_64
- os: windows-2019
architecture: arm64
- os: windows-2019
architecture: aarch64
- os: macos-12
architecture: aarch64
- os: macos-12
Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
os:
- 'ubuntu-20.04'
- 'macos-12'
# - 'windows-2019'
python-version:
- '3.7'
- '3.8'
Expand All @@ -35,13 +34,6 @@ jobs:
echo "OS_NAME=Linux" >> $GITHUB_ENV
echo "IS_WIN=" >> $GITHUB_ENV
echo "IS_MAC=" >> $GITHUB_ENV
- name: Get system version for Windows
if: ${{ runner.os == 'Windows' }}
shell: bash
run: |
echo "OS_NAME=Windows" >> $GITHUB_ENV
echo "IS_WIN=1" >> $GITHUB_ENV
echo "IS_MAC=" >> $GITHUB_ENV
- name: Get system version for MacOS
if: ${{ runner.os == 'macOS' }}
shell: bash
Expand All @@ -60,17 +52,6 @@ jobs:
sudo apt-get update
sudo apt-get install -y tree cloc wget curl make graphviz
dot -V
- name: Set up system dependences on Windows
if: ${{ env.OS_NAME == 'Windows' }}
shell: bash
run: |
choco install tree cloc wget curl make zip graphviz
dot -V
# - name: Set up MinGW
# if: ${{ env.OS_NAME == 'Windows' }}
# uses: egor-tensin/setup-mingw@v2
# with:
# platform: x64
- name: Set up system dependences on MacOS
if: ${{ env.OS_NAME == 'MacOS' }}
shell: bash
Expand All @@ -89,13 +70,6 @@ jobs:
pip install -r requirements.txt
pip install -r requirements-build.txt
pip install -r requirements-test.txt
# - name: Set up compiler on Windows
# if: ${{ env.OS_NAME == 'Windows' }}
# shell: bash
# run: |
# echo "PATH=C:\msys64\mingw64\bin:$PATH" >> $GITHUB_ENV
# clang --version
# set CC=clang
- name: Run unittest on MacOS or Linux
if: ${{ env.OS_NAME == 'MacOS' || env.OS_NAME == 'Linux'}}
env:
Expand All @@ -104,16 +78,6 @@ jobs:
shell: bash
run: |
make clean build unittest
- name: Run unittest on Windows
if: ${{ env.OS_NAME == 'Windows' }}
env:
CI: 'true'
LINETRACE: 1
shell: bash
run: |
make clean build unittest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 48dce11

Please sign in to comment.