1919# -----------------------------------------------------------------------------
2020
2121
22- name : ' Build xPack QEMU'
22+ name : ' Build xPack QEMU RISC-V '
2323
2424on :
2525 workflow_dispatch :
3232jobs :
3333
3434 linux-x64 :
35- name : ' Linux Intel - QEMU ${{ github.event.inputs.version }} build'
35+ name : ' Linux Intel - QEMU RISC-V ${{ github.event.inputs.version }} build'
3636 timeout-minutes : 5760 # 4 days
3737 runs-on : [self-hosted, linux, x64]
3838 steps :
3939 - name : ' Machine'
40- run : uname -a
40+ run : |
41+ uname -a
42+ node --version
43+ npm --version
4144
4245 - name : ' Checkout'
4346 uses : actions/checkout@v2
@@ -79,12 +82,15 @@ jobs:
7982
8083
8184 linux-arm :
82- name : ' Linux Arm 32 - QEMU ${{ github.event.inputs.version }} build'
85+ name : ' Linux Arm 32 - QEMU RISC-V ${{ github.event.inputs.version }} build'
8386 timeout-minutes : 2880 # 2 days
8487 runs-on : [self-hosted, linux, arm, xbbla32]
8588 steps :
8689 - name : ' Machine'
87- run : uname -a
90+ run : |
91+ uname -a
92+ node --version
93+ npm --version
8894
8995 - name : ' Checkout'
9096 uses : actions/checkout@v2
@@ -120,12 +126,15 @@ jobs:
120126
121127
122128 linux-arm64 :
123- name : ' Linux Arm 64 - QEMU ${{ github.event.inputs.version }} build'
129+ name : ' Linux Arm 64 - QEMU RISC-V ${{ github.event.inputs.version }} build'
124130 timeout-minutes : 2880 # 2 days
125131 runs-on : [self-hosted, linux, arm64, xbbla64]
126132 steps :
127133 - name : ' Machine'
128- run : uname -a
134+ run : |
135+ uname -a
136+ node --version
137+ npm --version
129138
130139 - name : ' Checkout'
131140 uses : actions/checkout@v2
@@ -162,14 +171,17 @@ jobs:
162171
163172
164173 macos-x64 :
165- name : ' macOS Intel - QEMU ${{ github.event.inputs.version }} build'
174+ name : ' macOS Intel - QEMU RISC-V ${{ github.event.inputs.version }} build'
166175 timeout-minutes : 2880 # 2 days
167176
168177 runs-on : [self-hosted, macos, intel]
169178
170179 steps :
171180 - name : ' Machine'
172- run : uname -a
181+ run : |
182+ uname -a
183+ node --version
184+ npm --version
173185
174186 - name : ' Checkout'
175187 uses : actions/checkout@v2
@@ -207,7 +219,7 @@ jobs:
207219
208220
209221 macos-arm64 :
210- name : ' macOS Arm - QEMU ${{ github.event.inputs.version }} build'
222+ name : ' macOS Arm - QEMU RISC-V ${{ github.event.inputs.version }} build'
211223 timeout-minutes : 2880 # 2 days
212224
213225 runs-on : [self-hosted, macos, apple]
@@ -218,7 +230,10 @@ jobs:
218230
219231 steps :
220232 - name : ' Machine'
221- run : uname -a
233+ run : |
234+ uname -a
235+ node --version
236+ npm --version
222237
223238 - name : ' Checkout'
224239 uses : actions/checkout@v2
0 commit comments