Drop yasm from dependencies and installation instructions #1209
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| whitespace-errors: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: check | |
| run: git diff-index --check --cached b1b622f691d40196815939e4736a5da71befd206 | |
| asan: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-fuzz --enable-asan | |
| asan-disable-all: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --disable-openmp --disable-simd --without-openssl | |
| asan-disable-openmp: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --disable-openmp | |
| asan-without-openssl: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --without-openssl | |
| asan-disable-simd: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --disable-simd | |
| asan-sse2: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --enable-simd=sse2 | |
| asan-avx: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --enable-simd=avx | |
| asan-avx2: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --enable-asan --enable-simd=avx2 | |
| gcc14-x86-without-openssl: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CC: gcc-14 | |
| TARGET: x86 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --without-openssl | |
| gcc14-x86-disable-all: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CC: gcc-14 | |
| TARGET: x86 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh --disable-openmp --disable-simd --without-openssl | |
| gcc14-x86_64: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CC: gcc-14 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| gcc13-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc-13 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| gcc12-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc-12 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| gcc11-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc-11 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| gcc10-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc-10 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| gcc9-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: gcc-9 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang18-x86_64: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CC: clang-18 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang17-x86_64: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CC: clang-17 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang16-x86_64: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CC: clang-16 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang15-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: clang-15 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang14-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: clang-14 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang13-x86_64: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: clang-13 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang12-x86_64: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: clang-12 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang11-x86_64: | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: clang-11 | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh | |
| clang10-x86_64: | |
| runs-on: ubuntu-latest | |
| env: | |
| CC: clang | |
| TARGET: x86_64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: install dependencies | |
| run: .ci/install-dependencies.sh | |
| - name: build check | |
| run: .ci/run-build-and-tests.sh |