Fix SVE2.1 quadword gather load/scatter store intrinsics (#337) #1159
This file contains 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
# SPDX-FileCopyrightText: Copyright 2021 Arm Limited and/or its affiliates <[email protected]> | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: check the correctness of the sources and generate the PDFs | |
run: ./build_with_docker.sh | |
- uses: actions/[email protected] | |
with: | |
name: pdfs | |
path: pdfs | |
build-github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: generate the GitHub Pages locally in order to check for errors | |
run: ./tools/build-github-pages.sh build | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
config-file: '.github/workflows/markdown-link-check.json' | |
draftversion-check: | |
runs-on: ubuntu-latest | |
if: github.base_ref == 'main' || github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Check correctness of draftversion fields | |
run: python ./tools/acle_draftversion_value_check.py . |