Skip to content

Commit

Permalink
print result at end
Browse files Browse the repository at this point in the history
  • Loading branch information
guguducken committed Jun 4, 2024
1 parent dbfff1b commit 82968f4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,17 @@ jobs:
echo "apikey=${{ secrets.S3APIKEY }}" >> $GITHUB_ENV
echo "apisecret=${{ secrets.S3APISECRET }}" >> $GITHUB_ENV
echo "bucket=${{ secrets.S3BUCKET }}" >> $GITHUB_ENV
# set ut workdir
echo "UT_WORKDIR=${{ github.workspace }}" >> $GITHUB_ENV
- name: Unit Testing
run: |
cd $GITHUB_WORKSPACE && make clean && make config
make ut UT_PARALLEL=6
- name: Print Result
continue-on-error: true
run: |
cd $UT_WORKDIR;
find scratch -name "**-UT-Count.out" -exec cat {} \;
ut-mac-x86:
if: ${{ !github.event.pull_request.draft }}
Expand All @@ -68,10 +75,17 @@ jobs:
echo "apikey=${{ secrets.S3APIKEY }}" >> $GITHUB_ENV
echo "apisecret=${{ secrets.S3APISECRET }}" >> $GITHUB_ENV
echo "bucket=${{ secrets.S3BUCKET }}" >> $GITHUB_ENV
# set ut workdir
echo "UT_WORKDIR=${{ github.workspace }}" >> $GITHUB_ENV
- name: Unit Testing
run: |
cd $GITHUB_WORKSPACE && make clean && make config
make ut UT_PARALLEL=6
- name: Print Result
continue-on-error: true
run: |
cd $UT_WORKDIR;
find scratch -name "**-UT-Count.out" -exec cat {} \;
sca:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 82968f4

Please sign in to comment.