Need better way to organize the estimations. #87
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: analyze | |
on: | |
push: | |
branches: | |
- unstable | |
jobs: | |
build: | |
runs-on: rtx6000-4x | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: configure | |
run: | | |
cd lib && ./configure --disable-openmp && cd .. | |
- name: analyze | |
run: | | |
cd lib && scan-build -o ../_analyze --use-cc clang make -j 64 | |
- name: upload report | |
run: | | |
cd _analyze | |
FILE=$(ls) | |
mv $FILE /var/www/public_html/analyze/$FILE | |
echo "View [$FILE](https://ci.libccv.org/analyze/$FILE)" >> $GITHUB_STEP_SUMMARY |