Skip to content

fix incorrect use of python package #8

fix incorrect use of python package

fix incorrect use of python package #8

Workflow file for this run

name: MSVC Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
env:
PYTHONIOENCODING: "utf-8"
steps:
- uses: actions/checkout@master
- uses: msys2/setup-msys2@v2
with:
msystem: MSYS
update: true
install: python
- uses: actions/setup-python@v1
- uses: seanmiddleditch/gha-setup-vsdevenv@master
- name: Install GTK
run: |
$WebClient = New-Object System.Net.WebClient
$WebClient.DownloadFile("https://github.com/deluge-torrent/gvsbuild-release/releases/download/latest/gvsbuild-py3.10-vs16-x64.zip","C:\GTK.zip")
7z x C:\GTK.zip -oc:\GTK
echo "C:\GTK\release\lib" | Out-File -FilePath $env:GITHUB_PATH -Append
echo "C:\GTK\release\bin" | Out-File -FilePath $env:GITHUB_PATH -Append
echo "C:\GTK\release" | Out-File -FilePath $env:GITHUB_PATH -Append
- uses: BSFishy/[email protected]
with:
action: test
directory: _build
setup-options: "-Dintrospection=enabled"
options: "--verbose"
meson-version: "0.55.3"