mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-28 05:14:33 +00:00
31 lines
712 B
YAML
31 lines
712 B
YAML
name: LIEF Windows Tests
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.8]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install system dependencies
|
|
run: |
|
|
choco install ninja
|
|
python -m pip install --upgrade pip setuptools
|
|
python -m pip install wheel mako
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
with:
|
|
toolset: "14.16"
|
|
- name: Build and Test
|
|
run: |
|
|
python ./setup.py --ninja --lief-test bdist_wheel
|
|
shell: cmd
|
|
|
|
|