forked from Frogging-Family/wine-tkg-git
-
Notifications
You must be signed in to change notification settings - Fork 2
30 lines (26 loc) · 857 Bytes
/
wine-ubuntu.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
name: Wine Ubuntu CI
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
container: ubuntu:20.04
steps:
- uses: actions/checkout@v4
- name: Compilation
run: |
dpkg --add-architecture i386 && apt update
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
DEBIAN_FRONTEND=noninteractive apt install -y tzdata aptitude git sudo
dpkg-reconfigure --frontend noninteractive tzdata
cd wine-tkg-git
sed -i 's/pkgname=wine-tkg/pkgname=wine-xiv/' non-makepkg-build.sh
echo '_ci_build="true"' >> customization.cfg
touch tarplz
yes|./non-makepkg-build.sh
- name: Archive the artifacts
uses: actions/upload-artifact@v4
with:
name: wine-xiv-ubuntu
path: wine-tkg-git/non-makepkg-builds