aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/ryml/.github/workflows/rarearchs.yml
blob: 8306b54ae28584054c55a70d30ea9e858b39859c (plain) (blame)
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
name: rarearchs

defaults:
  run:
    # Use a bash shell so we can use the same syntax for environment variable
    # access regardless of the host operating system
    shell: bash -e -x {0}

on:
  # https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662
  workflow_dispatch:
  push:
    branches:
    - master
  pull_request:
    branches:
    - master

jobs:
  rarearchs:
    if: |
      (!contains(github.event.head_commit.message, 'skip all')) ||
      (!contains(github.event.head_commit.message, 'skip rarearchs')) ||
      contains(github.event.head_commit.message, 'only rarearchs')
    name: ${{matrix.arch}}/c++${{matrix.std}}/${{matrix.bt}}
    continue-on-error: true
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        include:
          - {std: 11, bt: Debug  , arch: aarch64, distro: ubuntu20.04}
          - {std: 11, bt: Release, arch: aarch64, distro: ubuntu20.04}
          - {std: 14, bt: Debug  , arch: aarch64, distro: ubuntu20.04}
          - {std: 14, bt: Release, arch: aarch64, distro: ubuntu20.04}
          - {std: 17, bt: Debug  , arch: aarch64, distro: ubuntu20.04}
          - {std: 17, bt: Release, arch: aarch64, distro: ubuntu20.04}
          #
          - {std: 11, bt: Debug  , arch: ppc64le, distro: ubuntu20.04}
          - {std: 11, bt: Release, arch: ppc64le, distro: ubuntu20.04}
          - {std: 14, bt: Debug  , arch: ppc64le, distro: ubuntu20.04}
          - {std: 14, bt: Release, arch: ppc64le, distro: ubuntu20.04}
          - {std: 17, bt: Debug  , arch: ppc64le, distro: ubuntu20.04}
          - {std: 17, bt: Release, arch: ppc64le, distro: ubuntu20.04}
          #
          - {std: 11, bt: Debug  , arch: s390x  , distro: ubuntu20.04}
          - {std: 11, bt: Release, arch: s390x  , distro: ubuntu20.04}
          - {std: 14, bt: Debug  , arch: s390x  , distro: ubuntu20.04}
          - {std: 14, bt: Release, arch: s390x  , distro: ubuntu20.04}
          - {std: 17, bt: Debug  , arch: s390x  , distro: ubuntu20.04}
          - {std: 17, bt: Release, arch: s390x  , distro: ubuntu20.04}
          #
          #- {std: 11, bt: Debug  , arch: armv6  , distro: bullseye}
          #- {std: 11, bt: Release, arch: armv6  , distro: bullseye}
          #- {std: 14, bt: Debug  , arch: armv6  , distro: bullseye}
          #- {std: 14, bt: Release, arch: armv6  , distro: bullseye}
          #- {std: 17, bt: Debug  , arch: armv6  , distro: bullseye}
          #- {std: 17, bt: Release, arch: armv6  , distro: bullseye}
          #
          #- {std: 11, bt: Debug  , arch: armv7  , distro: ubuntu20.04}
          #- {std: 11, bt: Release, arch: armv7  , distro: ubuntu20.04}
          #- {std: 14, bt: Debug  , arch: armv7  , distro: ubuntu20.04}
          #- {std: 14, bt: Release, arch: armv7  , distro: ubuntu20.04}
          #- {std: 17, bt: Debug  , arch: armv7  , distro: ubuntu20.04}
          #- {std: 17, bt: Release, arch: armv7  , distro: ubuntu20.04}
    steps:
      - {name: checkout, uses: actions/checkout@v3, with: {submodules: recursive}}
      - name: test
        uses: uraimo/[email protected]
        with:
          arch: ${{matrix.arch}}
          distro: ${{matrix.distro}}
          install: |
            set -x
            start_time=$SECONDS
            time apt-get update -y
            time apt-get install -y \
              git \
              build-essential
            # arm platforms need an up-to-date cmake:
            # https://gitlab.kitware.com/cmake/cmake/-/issues/20568
            if [ "${{matrix.arch}}" == "armv6" ] || [ "${{matrix.arch}}" == "armv7" ] ; then
              time apt-get install -y \
                gpg \
                wget \
                apt-transport-https
              wget --no-check-certificate -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null
              echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ focal main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null
              time apt-get update -y
              rm /usr/share/keyrings/kitware-archive-keyring.gpg
              time apt-get install kitware-archive-keyring
              time apt-get update -y
            fi
            time apt-get install -y cmake cmake-data
            cmake --version
            echo "install took $((SECONDS - start_time))"
          run: |
            set -x
            start_time=$SECONDS
            uname -a
            pwd
            ls -lFhp .
            #
            bdir=build_${{matrix.arch}}_${{matrix.bt}}_${{matrix.std}}
            idir=install_${{matrix.arch}}_${{matrix.bt}}_${{matrix.std}}
            mkdir -p $bdir
            #
            time cmake -S . -B $bdir \
              -DCMAKE_INSTALL_PREFIX=$idir \
              -DCMAKE_BUILD_TYPE=${{matrix.bt}} \
              -DC4_CXX_STANDARD=${{matrix.std}} \
              -DCXX_STANDARD=${{matrix.std}} \
              -DRYML_DEV=ON \
              -DRYML_TEST_SUITE=ON \
              -DRYML_BUILD_BENCHMARKS=OFF \
              -DRYML_SANITIZE=OFF \
              -DRYML_LINT=OFF \
              -DRYML_VALGRIND=OFF
            #
            time cmake --build $bdir -j 3 --target ryml-test-build
            #
            time cmake --build $bdir -j 3 --target ryml-test-run
            echo "run took $((SECONDS - start_time))"