Skip to content

Commit

Permalink
tydgf
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr committed Apr 4, 2024
1 parent 34b8d1e commit a13b085
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
ccache -z
- name: build
env:
CI_BUILD_TARGET: CubeOrange
CI_BUILD_TARGET: release
shell: bash
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
Expand Down
11 changes: 11 additions & 0 deletions Tools/scripts/build_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,17 @@ for t in $CI_BUILD_TARGET; do
continue
fi

if [ "$t" == "release" ]; then
echo "Starting waf build for board ${t}..."
$waf configure --board CubeOrange \
--enable-header-checks \
--check-c-compiler="$c_compiler" \
--check-cxx-compiler="$cxx_compiler"
$waf clean
ccache -s && ccache -z
continue
fi

if [[ -z ${CI_CRON_JOB+1} ]]; then
echo "Starting waf build for board ${t}..."
$waf configure --board "$t" \
Expand Down

0 comments on commit a13b085

Please sign in to comment.