Build / Test on Ubuntu [manual] #1
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 / Test on Ubuntu [manual] | |
on: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: sh | |
jobs: | |
build: | |
name: Prepare and build on Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build project in Release-mode / compile Pas-units / run tests | |
run: ./_RebuildReleaseAndRunTests.sh | |
timeout-minutes: 40 | |
env: | |
PABCNET_BUILD_MODE: Release | |
PABCNET_RUN_TESTS: false | |
PABCNET_INC_BUILD: false | |
PABCNET_VERBOSE: false | |