CMake build, nagfor #980
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: CMake build, nagfor | |
| on: | |
| # Trigger the workflow on push or pull request | |
| push: | |
| #pull_request: # DANGEROUS! MUST be disabled for self-hosted runners! | |
| # Trigger the workflow by cron. The default time zone of GitHub Actions is UTC. | |
| schedule: | |
| - cron: '0 19 * * *' | |
| # Trigger the workflow manually | |
| workflow_dispatch: | |
| inputs: | |
| git-ref: | |
| description: Git Ref (Optional) | |
| required: false | |
| stress-test: | |
| description: Stress Test (Optional, true or false) | |
| required: false | |
| fflags: | |
| description: FFLAGS | |
| required: false | |
| verbose-makefile: | |
| description: Verbose Makefile (Optional, true or false) | |
| required: false | |
| # Show the git ref in the workflow name if it is invoked manually. | |
| run-name: ${{ github.event_name == 'workflow_dispatch' && format('Manual run {0} , {1}, {2}', inputs.git-ref, inputs.stress-test, inputs.verbose-makefile) || '' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| cmake: | |
| name: CMake build with nagfor | |
| runs-on: [self-hosted, nagfor] | |
| steps: | |
| - name: Clone Repository (Latest) | |
| uses: actions/checkout@v6.0.2 | |
| if: github.event.inputs.git-ref == '' | |
| with: | |
| ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS | |
| submodules: recursive | |
| - name: Clone Repository (Custom Ref) | |
| uses: actions/checkout@v6.0.2 | |
| if: github.event.inputs.git-ref != '' | |
| with: | |
| ref: ${{ github.event.inputs.git-ref }} | |
| ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS | |
| submodules: recursive | |
| - name: Miscellaneous setup | |
| run: bash .github/scripts/misc_setup | |
| - name: Build and test | |
| run: | | |
| source ~/local/bin/nag_licensing || echo "\n\nNAG licensing failed.\n\n" | |
| export CC=gcc | |
| export CFLAGS="-Wall -Wextra -Wpedantic -Werror" | |
| export FC=nagfor | |
| if [[ -n "${{ github.event.inputs.fflags }}" ]]; then | |
| export FFLAGS="${{ github.event.inputs.fflags }}" | |
| else | |
| export FFLAGS='-fpp -nan -ieee=stop -gline -u -C -C=alias -C=dangling -C=intovf -kind=unique -Warn=constant_coindexing -Warn=subnormal' | |
| # Zaikun 20240121: With gcc 13.2 or AppleClang 1.5.0 and nagfor 7.1.7143, if '-C=undefined' | |
| # is included in FFLAGS, then the C tests will encounter a segmentation fault, although | |
| # the Fortran tests work correctly. According to NAG support, -C=undefined "is not compatible with calling C code via a BIND(C) interface". | |
| fi | |
| $FC -V | |
| $CC --version | |
| cmake --version | |
| VERBOSE_MAKEFILE=OFF | |
| if [[ "${{ github.event.inputs.verbose-makefile }}" == "true" ]] ; then | |
| VERBOSE_MAKEFILE=ON | |
| fi | |
| cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=$VERBOSE_MAKEFILE -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=. -LAH -DCMAKE_C_FLAGS="${CFLAGS}" -DCMAKE_Fortran_FLAGS="${FFLAGS}" . | |
| cmake --build . --target install | |
| cmake --build . --target tests | |
| ctest --output-on-failure -V -E stress | |
| - name: Stress test | |
| if: ${{ github.event_name == 'schedule' || github.event.inputs.stress-test == 'true' }} | |
| shell: bash | |
| run: | | |
| ctest --output-on-failure -V -R stress |