-
Notifications
You must be signed in to change notification settings - Fork 9
111 lines (85 loc) · 2.55 KB
/
Release.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
name: Release
on:
workflow_dispatch:
push:
branches: [release/paclet]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
RESOURCE_PUBLISHER_TOKEN: ${{ secrets.RESOURCE_PUBLISHER_TOKEN }}
WOLFRAMSCRIPT_ENTITLEMENTID: ${{ secrets.WOLFRAMSCRIPT_ENTITLEMENTID }}
jobs:
Check:
name: Check
runs-on: ubuntu-latest
timeout-minutes: 15
container:
image: wolframresearch/wolframengine:13.3
options: --user root
env:
WOLFRAM_SYSTEM_ID: Linux-x86-64
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check
run: wolframscript -f Scripts/CheckPaclet.wls
- name: Build
run: wolframscript -f Scripts/BuildPaclet.wls
- name: Test
run: wolframscript -f Scripts/TestPaclet.wls
Release:
name: Release
needs: [Check, Submit]
runs-on: ubuntu-latest
timeout-minutes: 30
container:
image: wolframresearch/wolframengine:13.3
options: --user root
env:
WOLFRAM_SYSTEM_ID: Linux-x86-64
GH_INSTALL_URL: https://github.com/cli/cli/releases/download/v2.33.0/gh_2.33.0_linux_amd64.deb
steps:
- name: Update Git
run: |
apt-get update && apt-get install software-properties-common -y
add-apt-repository ppa:git-core/ppa -y
apt-get update && apt-get install git -y
wget ${{ env.GH_INSTALL_URL }} -O gh.deb
dpkg -i gh.deb
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: wolframscript -f Scripts/BuildPaclet.wls
- name: CreateRelease
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global --add safe.directory $(pwd)
gh release create "${{ env.PACLET_RELEASE_TAG }}" "${{ env.PACLET_PATH }}#${{ env.PACLET_FILE }}" \
--target="${{ github.ref }}" \
--repo="${{ env.GITHUB_REPOSITORY }}" \
--title="Release ${{ env.PACLET_RELEASE_TAG }}" \
--generate-notes
Submit:
name: Submit
needs: [Check]
runs-on: ubuntu-latest
timeout-minutes: 30
container:
image: wolframresearch/wolframengine:13.3
options: --user root
env:
WOLFRAM_SYSTEM_ID: Linux-x86-64
steps:
- name: Checkout
uses: actions/checkout@v3
- name: BuildMX
run: wolframscript -f Scripts/BuildMX.wls
- name: Submit
uses: WolframResearch/[email protected]
- name: UploadArtifact
uses: actions/upload-artifact@v3
with:
path: ${{ env.PACLET_BUILD_DIR }}
if-no-files-found: ignore