forked from GabLeRoux/macos-crossover-wine-cloud-builder
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (29 loc) · 845 Bytes
/
build_local.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
name: Wine-Crossover-MacOS-local
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
# this has to be synchronized with the same variable in build_local.sh
PACKAGE_UPLOAD: ${{ github.workspace }}/upload
jobs:
wine-crossover-local:
strategy:
fail-fast: false
matrix:
CROSS_OVER_VERSION: [21.0.0] # , 20.0.4, 20.0.2, 20.0.1, 20.0.0, 19.0.2]
runs-on: macos-10.15
env:
CROSS_OVER_VERSION: ${{ matrix.CROSS_OVER_VERSION }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run build_local.sh
run: ./build_local.sh
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: artifacts-cx${{ matrix.CROSS_OVER_VERSION }}
path: ${{ env.PACKAGE_UPLOAD }}