Skip to content

Commit

Permalink
Update autotest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd authored May 24, 2024
1 parent 1376400 commit 7c745a6
Showing 1 changed file with 11 additions and 33 deletions.
44 changes: 11 additions & 33 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,58 +5,36 @@ on:
branches: [main]

jobs:
build:
unit-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, windows-2019]
steps:
- uses: actions/checkout@v3
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Build the OutProc COM server
run: |
cd source/OutProcSrv
nmake /f Makefile
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: build-artifact-${{ matrix.os }}
path: source/OutProcSrv/server.exe

unittest:
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, windows-2019]
# python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
architecture: ['x86', 'x64']
steps:
- uses: actions/checkout@v3
- name: Download build artifact
uses: actions/download-artifact@v4
with:
name: build-artifact-${{ matrix.os }}
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Register the OutProc COM server
run: |
./server.exe /RegServer
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: Build and register the OutProc COM server
run: |
cd source/OutProcSrv
nmake /f Makefile
./server.exe /RegServer
- name: unittest comtypes
run: |
python -m unittest discover -v -s ./comtypes/test -t comtypes\test
- name: Unregister the OutProc COM server
run: |
cd source/OutProcSrv
./server.exe /UnregServer
install-test:
install-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit 7c745a6

Please sign in to comment.