-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (66 loc) · 2.16 KB
/
build-windows.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
name: Build Memory Cache Windows
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
repository: 'Mozilla-Ocho/Memory-Cache-Browser-Client'
path: 'Memory-Cache-Browser-Client'
- name: Install Node.js and Yarn
uses: actions/setup-node@v2
with:
node-version: '18.18.2'
- name: Install Memory Cache Browser Client Dependencies
run: |
cd Memory-Cache-Browser-Client
corepack enable
yarn --version
cp windows.yarnrc.yml .yarnrc.yml
cat .yarnrc.yml
yarn install
- name: Build Memory Cache Browser Client
run: |
cd Memory-Cache-Browser-Client
yarn parcel build src/index.html
- uses: actions/checkout@v2
with:
repository: 'Mozilla-Ocho/Memory-Cache-Hub'
path: 'Memory-Cache-Hub'
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Memory Cache Hub Dependencies
run: |
cd Memory-Cache-Hub
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
- name: Build Memory Cache Hub (--onedir)
run: |
cd Memory-Cache-Hub
venv\Scripts\activate
pip install -r requirements.build.txt
python -m memory_cache_hub.build.build_memory_cache_hub --client-path ..\Memory-Cache-Browser-Client\dist
- name: Upload Memory Cache Hub Artifact
uses: actions/upload-artifact@v2
with:
name: memory_cache_dir_${{ runner.os }}_${{ github.sha }}
path: Memory-Cache-Hub\dist\
- name: Build Memory Cache Hub (--onefile)
run: |
cd Memory-Cache-Hub
venv\Scripts\activate
pip install -r requirements.build.txt
python -m memory_cache_hub.build.build_memory_cache_hub --client-path ..\Memory-Cache-Browser-Client\dist --onefile
- name: Upload Memory Cache Hub Artifact
uses: actions/upload-artifact@v2
with:
name: memory_cache_${{ runner.os }}_${{ github.sha }}
path: Memory-Cache-Hub\dist\memory_cache_hub.exe