Skip to content

Build and test PR546 #203

Build and test PR546

Build and test PR546 #203

Workflow file for this run

name: Build and test
run-name: Build and test PR${{ github.event.number }}
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
build-ubuntu-arm64-gcc:
name: Ubuntu arm64 GCC
runs-on: ubuntu-24.04-arm
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install GCC 14
run: |
sudo apt-get update
sudo apt-get install -y gcc-14
- name: Build release
run: |
export CXX=g++-14
mkdir build_rel
cd build_rel
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DASTCENC_ISA_SVE_256=ON ..
make install -j4