-
Notifications
You must be signed in to change notification settings - Fork 9
34 lines (32 loc) · 1.13 KB
/
mips64_toolchain.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
# ref: https://toolchains.bootlin.com/
name: mips64 Toolchain
on: [push, pull_request, workflow_dispatch]
# Building using the github runner environement directly.
jobs:
mips64:
strategy:
matrix:
targets: [
# https://go.dev/doc/install/source#environment
mips64, # alias to mips64-r6
mips64el, # alias to mips64el-r6
mips64-r6, # codescape
mips64el-r6, # codescape
mips64-r2, # codescape
mips64el-r2 # codescape
]
fail-fast: false
name: Linux • Toolchain ${{ matrix.targets }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build env stage
run: make --directory=ci toolchain_${{ matrix.targets }}_env
- name: Build devel stage
run: make --directory=ci toolchain_${{ matrix.targets }}_devel
- name: Build toolchain stage
run: make --directory=ci toolchain_${{ matrix.targets }}_toolchain
- name: Build build stage
run: make --directory=ci toolchain_${{ matrix.targets }}_build
- name: Build Test stage
run: make --directory=ci toolchain_${{ matrix.targets }}_test