Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

build(deps): bump the github-actions group across 1 directory with 2 updates #71

build(deps): bump the github-actions group across 1 directory with 2 updates

build(deps): bump the github-actions group across 1 directory with 2 updates #71

# ref: https://toolchains.bootlin.com/
name: s390x Toolchain CMake
on: [push, pull_request, workflow_dispatch]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
# Building using the github runner environement directly.
jobs:
s390x:
strategy:
matrix:
targets: [
# https://go.dev/doc/install/source#environment
s390x, # bootlin
]
fail-fast: false
name: Linux•Toolchain ${{matrix.targets}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- 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
s390x_toolchain_cmake:
runs-on: ubuntu-latest
needs: s390x
steps:
- uses: actions/checkout@v6