|
| 1 | +name: CI |
| 2 | + |
| 3 | +on: [push, pull_request] |
| 4 | + |
| 5 | +jobs: |
| 6 | + whitespace-errors: |
| 7 | + runs-on: ubuntu-latest |
| 8 | + steps: |
| 9 | + - uses: actions/checkout@v5 |
| 10 | + - name: check |
| 11 | + run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904 |
| 12 | + |
| 13 | + gcc14-x86_64: |
| 14 | + runs-on: ubuntu-24.04 |
| 15 | + env: |
| 16 | + CC: gcc-14 |
| 17 | + TARGET: x86_64 |
| 18 | + steps: |
| 19 | + - uses: actions/checkout@v5 |
| 20 | + with: |
| 21 | + fetch-depth: 0 |
| 22 | + - name: install dependencies |
| 23 | + run: ci/install-dependencies.sh |
| 24 | + - name: build check |
| 25 | + run: ci/run-build-and-tests.sh |
| 26 | + |
| 27 | + gcc13-x86_64: |
| 28 | + runs-on: ubuntu-latest |
| 29 | + env: |
| 30 | + CC: gcc-13 |
| 31 | + TARGET: x86_64 |
| 32 | + steps: |
| 33 | + - uses: actions/checkout@v5 |
| 34 | + with: |
| 35 | + fetch-depth: 0 |
| 36 | + - name: install dependencies |
| 37 | + run: ci/install-dependencies.sh |
| 38 | + - name: build check |
| 39 | + run: ci/run-build-and-tests.sh |
| 40 | + |
| 41 | + gcc12-x86_64: |
| 42 | + runs-on: ubuntu-latest |
| 43 | + env: |
| 44 | + CC: gcc-12 |
| 45 | + TARGET: x86_64 |
| 46 | + steps: |
| 47 | + - uses: actions/checkout@v5 |
| 48 | + with: |
| 49 | + fetch-depth: 0 |
| 50 | + - name: install dependencies |
| 51 | + run: ci/install-dependencies.sh |
| 52 | + - name: build check |
| 53 | + run: ci/run-build-and-tests.sh |
| 54 | + |
| 55 | + gcc11-x86_64: |
| 56 | + runs-on: ubuntu-latest |
| 57 | + env: |
| 58 | + CC: gcc-11 |
| 59 | + TARGET: x86_64 |
| 60 | + steps: |
| 61 | + - uses: actions/checkout@v5 |
| 62 | + with: |
| 63 | + fetch-depth: 0 |
| 64 | + - name: install dependencies |
| 65 | + run: ci/install-dependencies.sh |
| 66 | + - name: build check |
| 67 | + run: ci/run-build-and-tests.sh |
| 68 | + |
| 69 | + gcc10-x86_64: |
| 70 | + runs-on: ubuntu-latest |
| 71 | + env: |
| 72 | + CC: gcc-10 |
| 73 | + TARGET: x86_64 |
| 74 | + steps: |
| 75 | + - uses: actions/checkout@v5 |
| 76 | + with: |
| 77 | + fetch-depth: 0 |
| 78 | + - name: install dependencies |
| 79 | + run: ci/install-dependencies.sh |
| 80 | + - name: build check |
| 81 | + run: ci/run-build-and-tests.sh |
| 82 | + |
| 83 | + gcc9-x86_64: |
| 84 | + runs-on: ubuntu-latest |
| 85 | + env: |
| 86 | + CC: gcc |
| 87 | + TARGET: x86_64 |
| 88 | + steps: |
| 89 | + - uses: actions/checkout@v5 |
| 90 | + with: |
| 91 | + fetch-depth: 0 |
| 92 | + - name: install dependencies |
| 93 | + run: ci/install-dependencies.sh |
| 94 | + - name: build check |
| 95 | + run: ci/run-build-and-tests.sh |
| 96 | + |
| 97 | + gcc8-x86_64: |
| 98 | + runs-on: ubuntu-20.04 |
| 99 | + env: |
| 100 | + CC: gcc-8 |
| 101 | + TARGET: x86_64 |
| 102 | + steps: |
| 103 | + - uses: actions/checkout@v5 |
| 104 | + with: |
| 105 | + fetch-depth: 0 |
| 106 | + - name: install dependencies |
| 107 | + run: ci/install-dependencies.sh |
| 108 | + - name: build check |
| 109 | + run: ci/run-build-and-tests.sh |
| 110 | + |
| 111 | + clang18-x86_64: |
| 112 | + runs-on: ubuntu-24.04 |
| 113 | + env: |
| 114 | + CC: clang-18 |
| 115 | + TARGET: x86_64 |
| 116 | + steps: |
| 117 | + - uses: actions/checkout@v5 |
| 118 | + with: |
| 119 | + fetch-depth: 0 |
| 120 | + - name: install dependencies |
| 121 | + run: ci/install-dependencies.sh |
| 122 | + - name: build check |
| 123 | + run: ci/run-build-and-tests.sh |
| 124 | + |
| 125 | + clang17-x86_64: |
| 126 | + runs-on: ubuntu-24.04 |
| 127 | + env: |
| 128 | + CC: clang-17 |
| 129 | + TARGET: x86_64 |
| 130 | + steps: |
| 131 | + - uses: actions/checkout@v5 |
| 132 | + with: |
| 133 | + fetch-depth: 0 |
| 134 | + - name: install dependencies |
| 135 | + run: ci/install-dependencies.sh |
| 136 | + - name: build check |
| 137 | + run: ci/run-build-and-tests.sh |
| 138 | + |
| 139 | + clang16-x86_64: |
| 140 | + runs-on: ubuntu-24.04 |
| 141 | + env: |
| 142 | + CC: clang-16 |
| 143 | + TARGET: x86_64 |
| 144 | + steps: |
| 145 | + - uses: actions/checkout@v5 |
| 146 | + with: |
| 147 | + fetch-depth: 0 |
| 148 | + - name: install dependencies |
| 149 | + run: ci/install-dependencies.sh |
| 150 | + - name: build check |
| 151 | + run: ci/run-build-and-tests.sh |
| 152 | + |
| 153 | + clang15-x86_64: |
| 154 | + runs-on: ubuntu-latest |
| 155 | + env: |
| 156 | + CC: clang-15 |
| 157 | + TARGET: x86_64 |
| 158 | + steps: |
| 159 | + - uses: actions/checkout@v5 |
| 160 | + with: |
| 161 | + fetch-depth: 0 |
| 162 | + - name: install dependencies |
| 163 | + run: ci/install-dependencies.sh |
| 164 | + - name: build check |
| 165 | + run: ci/run-build-and-tests.sh |
| 166 | + |
| 167 | + clang14-x86_64: |
| 168 | + runs-on: ubuntu-latest |
| 169 | + env: |
| 170 | + CC: clang-14 |
| 171 | + TARGET: x86_64 |
| 172 | + steps: |
| 173 | + - uses: actions/checkout@v5 |
| 174 | + with: |
| 175 | + fetch-depth: 0 |
| 176 | + - name: install dependencies |
| 177 | + run: ci/install-dependencies.sh |
| 178 | + - name: build check |
| 179 | + run: ci/run-build-and-tests.sh |
| 180 | + |
| 181 | + clang13-x86_64: |
| 182 | + runs-on: ubuntu-22.04 |
| 183 | + env: |
| 184 | + CC: clang-13 |
| 185 | + TARGET: x86_64 |
| 186 | + steps: |
| 187 | + - uses: actions/checkout@v5 |
| 188 | + with: |
| 189 | + fetch-depth: 0 |
| 190 | + - name: install dependencies |
| 191 | + run: ci/install-dependencies.sh |
| 192 | + - name: build check |
| 193 | + run: ci/run-build-and-tests.sh |
| 194 | + |
| 195 | + clang12-x86_64: |
| 196 | + runs-on: ubuntu-22.04 |
| 197 | + env: |
| 198 | + CC: clang-12 |
| 199 | + TARGET: x86_64 |
| 200 | + steps: |
| 201 | + - uses: actions/checkout@v5 |
| 202 | + with: |
| 203 | + fetch-depth: 0 |
| 204 | + - name: install dependencies |
| 205 | + run: ci/install-dependencies.sh |
| 206 | + - name: build check |
| 207 | + run: ci/run-build-and-tests.sh |
| 208 | + |
| 209 | + clang11-x86_64: |
| 210 | + runs-on: ubuntu-22.04 |
| 211 | + env: |
| 212 | + CC: clang-11 |
| 213 | + TARGET: x86_64 |
| 214 | + steps: |
| 215 | + - uses: actions/checkout@v5 |
| 216 | + with: |
| 217 | + fetch-depth: 0 |
| 218 | + - name: install dependencies |
| 219 | + run: ci/install-dependencies.sh |
| 220 | + - name: build check |
| 221 | + run: ci/run-build-and-tests.sh |
| 222 | + |
| 223 | + clang10-x86_64: |
| 224 | + runs-on: ubuntu-latest |
| 225 | + env: |
| 226 | + CC: clang |
| 227 | + TARGET: x86_64 |
| 228 | + steps: |
| 229 | + - uses: actions/checkout@v5 |
| 230 | + with: |
| 231 | + fetch-depth: 0 |
| 232 | + - name: install dependencies |
| 233 | + run: ci/install-dependencies.sh |
| 234 | + - name: build check |
| 235 | + run: ci/run-build-and-tests.sh |
| 236 | + |
| 237 | + clang9-x86_64: |
| 238 | + runs-on: ubuntu-20.04 |
| 239 | + env: |
| 240 | + CC: clang-9 |
| 241 | + TARGET: x86_64 |
| 242 | + steps: |
| 243 | + - uses: actions/checkout@v5 |
| 244 | + with: |
| 245 | + fetch-depth: 0 |
| 246 | + - name: install dependencies |
| 247 | + run: ci/install-dependencies.sh |
| 248 | + - name: build check |
| 249 | + run: ci/run-build-and-tests.sh |
| 250 | + |
| 251 | + clang8-x86_64: |
| 252 | + runs-on: ubuntu-20.04 |
| 253 | + env: |
| 254 | + CC: clang-8 |
| 255 | + TARGET: x86_64 |
| 256 | + steps: |
| 257 | + - uses: actions/checkout@v5 |
| 258 | + with: |
| 259 | + fetch-depth: 0 |
| 260 | + - name: install dependencies |
| 261 | + run: ci/install-dependencies.sh |
| 262 | + - name: build check |
| 263 | + run: ci/run-build-and-tests.sh |
0 commit comments