using codelite in github action
Posted: Sun Aug 16, 2020 1:20 pm
I try to fix an issue in premake (tools which might generate stand-alone codelite project), and so provide unittest to run the generated project.
I saw `codelite-make` which might fit my needs (even if it seems that I have to call it for each projects, and not only once)
But it requires build_settings.xml file. ()
Can we generate it in non-interactive mode.
My github action look like
I saw `codelite-make` which might fit my needs (even if it seems that I have to call it for each projects, and not only once)
But it requires build_settings.xml file. (
Code: Select all
[ERROR ] Could not load build settings configuration object (Version 2.1 / build_settings.xml)
Can we generate it in non-interactive mode.
My github action look like
Code: Select all
- name: sudo apt-get install -y codelite
run: sudo apt-get install -y codelite
- name: IntegrationTest codelite
run: |
bin/premake5 --file="sampleproject/premake5.lua" codelite # generate codelite project
cd sampleproject/project/codelite/ && codelite-make --workspace=SampleTest.workspace --project=app --config=Release --command=build --verbose --execute