Skip to content

Windows CI

Windows CI #62

Workflow file for this run

name: OpenRV
on:
push:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml
pull_request:
branches:
- 'feature/**'
paths:
- .github/workflows/ci.yml
jobs:
windows:
runs-on: windows-latest
steps:
- name: Setup msys2
uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
cache: true
path-type: inherit
install: >-
mingw-w64-x86_64-meson
# install: >-
# mingw-w64-x86_64-autotools
# mingw-w64-x86_64-glew
# mingw-w64-x86_64-libarchive
# mingw-w64-x86_64-make
# mingw-w64-x86_64-meson
# mingw-w64-x86_64-toolchain
# autoconf
# automake
# bison
# flex
# libtool
# nasm
# ninja
# p7zip
# patch
# unzip
# zip
- uses: actions/setup-python@v5
with:
python-version: '3.10'
# - name: Setup PATH environment variable
# run: |
# echo "PATH=C:/hostedtoolcache/windows/Python/3.10.11/x64:$PATH" >> $GITHUB_ENV
- run: MSYS2_PATH_TYPE=inherit echo "export PATH=\C:/hostedtoolcache/windows/Python/3.10.11/x64:$PATH" >> ~/.bash_profile
shell: msys2 {0}
- run: echo $PATH
shell: msys2 {0}