-
Notifications
You must be signed in to change notification settings - Fork 6
144 lines (140 loc) · 4.53 KB
/
performance.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
132
133
134
135
136
137
138
139
140
141
142
143
144
name: Performance
on:
workflow_dispatch:
pull_request: # FIXME JUST FOR TESTING
branches:
- main
schedule:
- cron: "0 5 * * *" # Runs every day at 5am: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule
jobs:
prepare:
name: Performance benchmark on ubuntu-latest with Node.js 16.x
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js "16.x"
uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- name: Use Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Build
shell: bash
run: yarn
- name: Checkout Theia
uses: actions/checkout@v3
with:
repository: eclipse-theia/theia
path: ./theia
- name: Copy webpack config
shell: bash
run: |
cp -f ./configs/theia.production.webpack.config.js ./theia/examples/browser/webpack.config.js
- name: Build Theia
shell: bash
working-directory: ./theia
run: |
yarn --skip-integrity-check --network-timeout 100000
yarn download:plugins
env:
NODE_OPTIONS: --max_old_space_size=4096
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9
- name: Build Browser App (Production)
shell: bash
working-directory: ./theia/examples/browser
run: |
yarn -s compile && yarn rebuild && yarn theia build --mode=production
env:
NODE_OPTIONS: --max_old_space_size=4096
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # https://github.com/microsoft/vscode-ripgrep/issues/9
- name: Cache Build Result
uses: actions/cache@v3
id: build-result
with:
path: ./*
key: ${{ github.run_number }}
run-test:
name: Performance benchmark on ubuntu-latest with Node.js 16.x
runs-on: ubuntu-latest
needs: [prepare]
strategy:
matrix:
run: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
timeout-minutes: 40
steps:
- name: Restore Build Result (#${{ matrix.run }})
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Use Node.js "16.x"
uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- name: Use Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Get History
uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
- name: Run Theia (#${{ matrix.run }})
shell: bash
working-directory: ./theia
run: yarn browser start:debug &
- name: Run Performance Measurement (#${{ matrix.run }})
uses: GabrielBB/xvfb-action@v1
env:
RUN_NO: ${{ matrix.run }}
with:
run: yarn performance
- name: Upload performance measurement (#${{ matrix.run }})
uses: actions/upload-artifact@v3
with:
name: performance-measurement-${{ github.run_number }}
path: performance-metrics/*
generate-report:
name: Performance benchmark on ubuntu-latest with Node.js 16.x
runs-on: ubuntu-latest
needs: [run-test]
steps:
- name: Restore Build Result
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Get History
uses: actions/checkout@v4
if: always() && github.ref == 'refs/heads/main'
continue-on-error: true
with:
ref: gh-pages
path: gh-pages
- name: Download Performance Measurements
uses: actions/download-artifact@v3
with:
name: performance-measurement-${{ github.run_number }}
path: performance-metrics
- name: Prepare Report
if: always() && github.ref == 'refs/heads/main'
shell: bash
run: yarn performance-report
- name: Publish Report
if: always() && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v2
env:
PERSONAL_TOKEN: ${{ secrets.TOKEN }}
PUBLISH_BRANCH: gh-pages
PUBLISH_DIR: public