Build and test PR546 #204
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
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 |