Add simple configuration summary to cmake. #151
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: Build | |
| on: | |
| push: | |
| branches: ["*"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| linux-x86-64: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: | | |
| sudo apt-get install gcc-multilib | |
| - run: make rebuild install test prefix=${{ github.workspace }}install64 ARCH=x86_64 | |
| - run: make rebuild install test prefix=${{ github.workspace }}install64 ARCH=x86_64 NO_ASM=1 | |
| - run: make rebuild install test prefix=${{ github.workspace }}install32 ARCH=x86 | |
| - run: make rebuild install test prefix=${{ github.workspace }}install32 ARCH=x86 NO_ASM=1 | |
| linux-cross-compile-arm: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: | | |
| sudo apt-get install gcc-aarch64-linux-gnu | |
| - run: make rebuild install prefix=${{ github.workspace }}installaarch64 ARCH=aarch64 | |
| - run: make rebuild install prefix=${{ github.workspace }}installaarch64 ARCH=aarch64 NO_ASM=1 |