Skip to content

Commit

Permalink
Separate runs into ci block 1 and 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Jul 8, 2024
1 parent 3934523 commit 90e85c1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,13 @@ jobs:
include:
# multiarch testing
- { name: PPC64LE-GCC, multiarch: yes,
compiler: gcc, cxxstd: '17', os: ubuntu-22.04, ccache: no, distro: alpine, edition: edge, arch: ppc64le }
compiler: gcc, cxxstd: '17', os: ubuntu-22.04, ccache: no, distro: alpine, edition: edge, arch: ppc64le, suite: github_ci_block_1 }
- { name: PPC64LE-Clang, multiarch: yes,
compiler: clang, cxxstd: '17', os: ubuntu-22.04, ccache: no, distro: alpine, edition: edge, arch: ppc64le }
compiler: clang, cxxstd: '17', os: ubuntu-22.04, ccache: no, distro: alpine, edition: edge, arch: ppc64le, suite: github_ci_block_1 }
- { name: PPC64LE-GCC, multiarch: yes,
compiler: gcc, cxxstd: '17', os: ubuntu-22.04, ccache: no, distro: alpine, edition: edge, arch: ppc64le, suite: github_ci_block_2 }
- { name: PPC64LE-Clang, multiarch: yes,
compiler: clang, cxxstd: '17', os: ubuntu-22.04, ccache: no, distro: alpine, edition: edge, arch: ppc64le, suite: github_ci_block_2 }


timeout-minutes: 360
Expand Down Expand Up @@ -196,7 +200,7 @@ jobs:
# B2_VARIANT: ${{matrix.variant}}
# Set the (B2) target(s) to build, defaults to the test folder of the current library
# Can alternatively be done like this in the build step or in the build command of the build step, e.g. `run: B2_TARGETS=libs/$SELF/doc ci/build.sh`
# B2_TARGETS: libs/foo/test//bar
B2_TARGETS: libs/multiprecision/test//${{ matrix.suite }}
run: source ci/github/install.sh

- name: Run tests
Expand Down

0 comments on commit 90e85c1

Please sign in to comment.