Build CI #16
Workflow file for this run
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 CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
Make_releaseBuild_arg: | |
required: false | |
type: string | |
default: releaseBuild=0 | |
defaults: | |
run: | |
working-directory: ./source/ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build with make | |
env: | |
CI_HOST_INFO: GitHub Build Workflow | |
run: make i18nglish.out build_host_description="${CI_HOST_INFO} ID:${GITHUB_RUN_ID} for ${GITHUB_REF}" ${Make_releaseBuild_arg} | |
- name: Upload executable file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: i18nglish-linux | |
path: ./source/i18nglish.out | |
if-no-files-found: error | |
retention-days: 7 |