forked from Kron4ek/Wine-Builds
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 874 Bytes
/
proton-exp.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
name: Proton Experimental CI
on:
schedule:
- cron: '0 0 1,17 * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: bootstraps.yml
workflow_conclusion: success
path: /opt
- name: Build Proton
run: |
sudo apt update
sudo apt install debootstrap perl git wget xz-utils bubblewrap autoconf
sudo tar -C /opt -xpf /opt/Bootstraps/bootstraps.tar.xz
chmod +x build_wine.sh
WINE_BRANCH=proton PROTON_BRANCH=bleeding-edge ./build_wine.sh
sha256sum *.tar.xz
- uses: actions/upload-artifact@v3
with:
name: Proton Experimental
path: ./*.tar.xz