Skip to content

update

update #3

Workflow file for this run

name: CMake Linux
on:
push:
branches: [ "master" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
env:
ZFCI_TOKEN: ${{secrets.ZFCI_TOKEN}}
ZF_PROJ_PATH: ZFModuleDemo_app/zfproj
ZF_PROJ_NAME: ZFModuleDemo_app
steps:
- uses: actions/checkout@v4
- name: get-cmake
uses: lukka/get-cmake@latest
- name: Set up NASM
uses: ilammy/setup-nasm@v1
- name: ZFSetup
run: |
chmod +x ./zfsetup.sh
./zfsetup.sh
- name: ZF build zfproj
run: |
chmod +x ../ZFFramework/tools/buildapp/buildapp_cmake.sh
../ZFFramework/tools/buildapp/buildapp_cmake.sh "${ZF_PROJ_NAME}" "${ZF_PROJ_PATH}"