From ea9d24376e0fad338404e620a2e78b998c31014b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan-David=20Schr=C3=B6der?= Date: Wed, 4 Nov 2020 10:12:47 +0100 Subject: [PATCH] #5 using msys2 github action with pacman in Path --- .github/workflows/cpythonwindowsbuild.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cpythonwindowsbuild.yml b/.github/workflows/cpythonwindowsbuild.yml index c99799ae..578204f1 100644 --- a/.github/workflows/cpythonwindowsbuild.yml +++ b/.github/workflows/cpythonwindowsbuild.yml @@ -10,12 +10,22 @@ jobs: strategy: matrix: python-version: ['3.7'] + defaults: + run: + shell: msys2 {0} steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} + # Using https://github.com/marketplace/actions/setup-msys2 + - name: Using "Setup MSYS2" contrib + uses: msys2/setup-msys2@v2 + with: + update: true + install: base-devel git libjpeg + - run: git describe --dirty - name: build on windows working-directory: ./ env: