-
Notifications
You must be signed in to change notification settings - Fork 165
105 lines (101 loc) · 3.09 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: windows
on:
push:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/windows.yml'
- '!.github/workflows/EnterDevShell.ps1'
pull_request:
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/windows.yml'
- '!.github/workflows/EnterDevShell.ps1'
permissions: read-all
jobs:
windows-msvc:
runs-on: windows-2022
steps:
- name: checkout libva
uses: actions/checkout@v3
with:
repository: intel/libva
path: libva
- name: checkout libva-utils
uses: actions/checkout@v3
with:
path: libva-utils
- name: 'Setup Python'
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Meson
run: pip install meson
- name: Install pkg-config
shell: pwsh
run: |
Invoke-RestMethod -Uri https://download.gnome.org/binaries/win32/dependencies/pkg-config_0.26-1_win32.zip -OutFile pkg-config_0.26-1_win32.zip
Expand-Archive pkg-config_0.26-1_win32.zip
Invoke-RestMethod -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.28/glib_2.28.8-1_win32.zip -OutFile glib_2.28.8-1_win32.zip
Expand-Archive glib_2.28.8-1_win32.zip
Invoke-RestMethod -Uri http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime_0.18.1.1-2_win32.zip -OutFile gettext-runtime_0.18.1.1-2_win32.zip
Expand-Archive gettext-runtime_0.18.1.1-2_win32.zip
mkdir pkg-config
cp pkg-config_0.26-1_win32\bin\* pkg-config\
cp gettext-runtime_0.18.1.1-2_win32\bin\* pkg-config\
cp glib_2.28.8-1_win32\bin\* pkg-config\
- name: Enter DevShell
run: 'libva-utils\.github\workflows\EnterDevShell.ps1 ${{ inputs.architecture }}'
shell: pwsh
- name: Build libva
run: |
cd libva
meson build
ninja -C build install
- name: Build libva-utils
run: |
$env:Path += ";"
$env:Path += Resolve-Path pkg-config\
$env:Path += ";c:\bin\;c:\lib\"
$env:PKG_CONFIG_PATH = "C:\lib\pkgconfig"
del C:\Strawberry\perl\bin\pkg-config*
cd libva-utils
meson build -Dtests=true
ninja -C build install
windows-mingw:
runs-on: windows-2022
defaults:
run:
shell: msys2 {0}
steps:
- name: checkout libva
uses: actions/checkout@v3
with:
repository: intel/libva
path: libva
- name: checkout libva-utils
uses: actions/checkout@v3
with:
path: libva-utils
- name: 'Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
msystem: mingw64
update: false
install: >-
git
pacboy: >-
toolchain:p
meson:p
- name: Enter DevShell
run: 'libva-utils\.github\workflows\EnterDevShell.ps1 ${{ inputs.architecture }}'
shell: pwsh
- name: Build libva
run: |
cd libva
CC=gcc meson build
CC=gcc ninja -C build install
- name: Build libva-utils
run: |
cd libva-utils
CC=gcc meson build -Dtests=true
CC=gcc ninja -C build install