-
-
Notifications
You must be signed in to change notification settings - Fork 15
131 lines (108 loc) · 5.18 KB
/
main.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Build at 00:00 on every 13th day-of-month.
schedule:
- cron: "0 0 */13 * *"
# Triggers the workflow on push or pull request events but only for the test5 branch
push:
branches: [ test5 ]
paths-ignore: [ '**/README.md' ]
pull_request:
branches: [ test5 ]
paths-ignore: [ '**/README.md' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-devel-exp-wow64:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Prerequisites
run: |
wget -q "https://github.com/AppImageCrafters/appimage-builder/releases/download/Continuous/appimage-builder-1.1.1.dev32+g2709a3b-x86_64.AppImage" -O appimage-builder ; chmod +x appimage-builder ; ./appimage-builder --appimage-extract &>/dev/null
mkdir -p /usr/share/icons/hicolor/scalable/ ; cp wine.svg /usr/share/icons/hicolor/scalable/
# wget -q "https://github.com/probonopd/static-tools/releases/download/continuous/mksquashfs-x86_64" -O squashfs-root/usr/bin/mksquashfs
cp runtime/mksquashfs squashfs-root/usr/bin/mksquashfs
rm appimage-builder ; sed -i 's|xz|zstd|' squashfs-root/usr/lib/python3.8/site-packages/appimagebuilder/modules/prime/appimage_primer.py
# stable
echo "WINE_VER=devel-wow64_$(wget -qO- https://github.com/mmtrt/Wine-Builds/releases/expanded_assets/wow64 | grep -Eo '/wine-[0-9].*xz"' | cut -d'-' -f2 | head -1)" >> $GITHUB_ENV
# Runs a set of commands using the runners shell
- name: Build appimage
run: |
# add dir dist
mkdir dist
squashfs-root/AppRun --recipe wine-devel-exp-wow64.yml
mv *AppImage* dist/.
- name: Upload artifact
uses: actions/[email protected]
with:
name: wine-devel-exp-wow64-continuous-x86_64.AppImage
path: 'dist'
build-staging-exp-wow64:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Prerequisites
run: |
wget -q "https://github.com/AppImageCrafters/appimage-builder/releases/download/Continuous/appimage-builder-1.1.1.dev32+g2709a3b-x86_64.AppImage" -O appimage-builder ; chmod +x appimage-builder ; ./appimage-builder --appimage-extract &>/dev/null
mkdir -p /usr/share/icons/hicolor/scalable/ ; cp wine.svg /usr/share/icons/hicolor/scalable/
# wget -q "https://github.com/probonopd/static-tools/releases/download/continuous/mksquashfs-x86_64" -O squashfs-root/usr/bin/mksquashfs
cp runtime/mksquashfs squashfs-root/usr/bin/mksquashfs
rm appimage-builder ; sed -i 's|xz|zstd|' squashfs-root/usr/lib/python3.8/site-packages/appimagebuilder/modules/prime/appimage_primer.py
# stable
echo "WINE_VER=staging-wow64_$(wget -qO- https://github.com/mmtrt/Wine-Builds/releases/expanded_assets/wow64 | grep -Eo '/wine-[0-9].*xz"' | cut -d'-' -f2 | head -1)" >> $GITHUB_ENV
# Runs a set of commands using the runners shell
- name: Build appimage
run: |
# add dir dist
mkdir dist
squashfs-root/AppRun --recipe wine-staging-exp-wow64.yml
mv *AppImage* dist/.
- name: Upload artifact
uses: actions/[email protected]
with:
name: wine-staging-exp-wow64-continuous-x86_64.AppImage
path: 'dist'
release-devel-exp-wow64:
needs: [build-devel-exp-wow64]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: wine-devel-exp-wow64-continuous-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: wine-devel-wow64 (experimental)
automatic_release_tag: test5-devel
prerelease: false
draft: false
files: |
wine-devel-exp-wow64-continuous-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}
release-staging-exp-wow64:
needs: [build-staging-exp-wow64]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: wine-staging-exp-wow64-continuous-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: wine-staging-wow64 (experimental)
automatic_release_tag: test5-staging
prerelease: false
draft: false
files: |
wine-staging-exp-wow64-continuous-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}