forked from lando/cli
-
Notifications
You must be signed in to change notification settings - Fork 1
130 lines (126 loc) · 4.55 KB
/
pr-release-tests.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
name: PR Release Tests
on:
pull_request:
jobs:
package:
runs-on: ubuntu-latest
env:
TERM: xterm
strategy:
matrix:
arch:
- x64
- arm64
node-version:
- 'lts/*'
os:
- linux
- macos
- win
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install Yarn dependencies
run: yarn install --prefer-offline --frozen-lockfile --production
- name: Reset version if needed
run: |
yarn add @lando/argv@^1.1.0
node ./scripts/dev-version.js
node ./bin/lando version
- name: Package into node binary
uses: lando/pkg-action@v5
id: pkg-action
with:
entrypoint: bin/lando.js
arch: ${{ matrix.arch }}
os: ${{ matrix.os }}
# sign-n-deploy:
# runs-on: ${{ matrix.os }}
# needs:
# - package
# env:
# TERM: xterm
# strategy:
# matrix:
# include:
# - os: windows-2022
# key: cli-node14-win-x64-${{ github.sha }}
# file: lando/cli.exe
# certificate-data: WINDOZE_CERT_DATA
# certificate-password: WINDOZE_CERT_PASSWORD
# result: lando-win-x64-snapshot-${{ github.sha }}.exe
# - os: windows-2022
# key: cli-node14-win-arm64-${{ github.sha }}
# file: lando/cli.exe
# certificate-data: WINDOZE_CERT_DATA
# certificate-password: WINDOZE_CERT_PASSWORD
# result: lando-win-arm64-snapshot-${{ github.sha }}.exe
# - os: macos-11
# key: cli-node14-macos-x64-${{ github.sha }}
# file: lando/cli
# certificate-data: APPLE_CERT_DATA
# certificate-password: APPLE_CERT_PASSWORD
# apple-product-id: dev.lando.cli
# apple-team-id: FY8GAUX282
# apple-notary-user: APPLE_NOTARY_USER
# apple-notary-password: APPLE_NOTARY_PASSWORD
# options: --options runtime --entitlements entitlements.xml
# result: lando-macos-x64-snapshot-${{ github.sha }}
# - os: macos-11
# key: cli-node14-macos-arm64-${{ github.sha }}
# file: lando/cli
# certificate-data: APPLE_CERT_DATA
# certificate-password: APPLE_CERT_PASSWORD
# apple-product-id: dev.lando.cli
# apple-team-id: FY8GAUX282
# apple-notary-user: APPLE_NOTARY_USER
# apple-notary-password: APPLE_NOTARY_PASSWORD
# options: --options runtime --entitlements entitlements.xml
# result: lando-macos-arm64-snapshot-${{ github.sha }}
# - os: ubuntu-20.04
# key: cli-node14-linux-x64-${{ github.sha }}
# file: lando/cli
# result: lando-linux-x64-snapshot-${{ github.sha }}
# - os: ubuntu-20.04
# key: cli-node14-linux-arm64-${{ github.sha }}
# file: lando/cli
# result: lando-linux-arm64-snapshot-${{ github.sha }}
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Download ${{ matrix.key }}
# uses: actions/download-artifact@v3
# with:
# name: ${{ matrix.key }}
# path: lando
# - name: Sign and Notarize
# uses: lando/code-sign-action@v2
# id: code-sign-action
# with:
# file: ${{ matrix.file }}
# certificate-data: ${{ secrets[matrix.certificate-data] }}
# certificate-password: ${{ secrets[matrix.certificate-password] }}
# apple-notary-user: ${{ secrets[matrix.apple-notary-user] }}
# apple-notary-password: ${{ secrets[matrix.apple-notary-password] }}
# apple-product-id: ${{ matrix.apple-product-id }}
# apple-team-id: ${{ matrix.apple-team-id }}
# options: ${{ matrix.options }}
# - name: Rename as needed
# shell: bash
# run: |
# chmod +x ${{ steps.code-sign-action.outputs.file }}
# mv ${{ steps.code-sign-action.outputs.file }} ${{ matrix.result }}
# - name: Upload snapshot release ${{ matrix.result }}
# uses: actions/upload-artifact@v3
# with:
# name: ${{ matrix.result }}
# path: ${{ matrix.result }}
# if-no-files-found: error
# retention-days: 1