Build Windows app with managed GNUstep root #34
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: linux-gnustep-clang | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: | |
| - self-hosted | |
| - linux | |
| - gnustep-clang | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Verify GNUstep clang environment | |
| shell: bash | |
| run: | | |
| set -eo pipefail | |
| test -f /usr/GNUstep/System/Library/Makefiles/GNUstep.sh | |
| set +u | |
| source /usr/GNUstep/System/Library/Makefiles/GNUstep.sh | |
| set -u | |
| command -v clang | |
| command -v gmake | |
| command -v xctest | |
| - name: Build and run tests | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| ./scripts/ci/run-linux-ci.sh |