Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trigger ci #11

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci(tics): dynamically infer file list
cjdcordeiro committed Jan 17, 2025

Verified

This commit was signed with the committer’s verified signature.
cjdcordeiro Cristovao Cordeiro
commit a4209ec455ebdc8b018dbf1f316db5c730f3f410
7 changes: 3 additions & 4 deletions .github/workflows/tics.yml
Original file line number Diff line number Diff line change
@@ -45,8 +45,6 @@ jobs:
needs: [set-project, call-unit-tests]
permissions:
pull-requests: write
env:
TICS_FILELIST: tics-filelist
steps:
- uses: actions/checkout@v4
with:
@@ -109,9 +107,10 @@ jobs:
mode: 'client'
codetype: 'TESTCODE'
project: chisel
filelist: ${{ env.TICS_FILELIST }}
filelist: ${{ steps.get-filelist.outputs.TICS_FILELIST }}
viewerUrl: 'https://canonical.tiobe.com/tiobeweb/TICS/api/cfg?name=default'
displayUrl: 'https://canonical.tiobe.com/tiobeweb/TICS'
ticsAuthToken: ${{ secrets.TICSAUTHTOKEN }}
installTics: true

- name: Run TiCS server analysis
@@ -122,7 +121,7 @@ jobs:
codetype: 'PRODUCTION'
project: chisel
branchdir: .
filelist: ${{ env.TICS_FILELIST }}
filelist: ${{ steps.get-filelist.outputs.TICS_FILELIST }}
viewerUrl: 'https://canonical.tiobe.com/tiobeweb/TICS/api/cfg?name=default'
displayUrl: 'https://canonical.tiobe.com/tiobeweb/TICS'
ticsAuthToken: ${{ secrets.TICSAUTHTOKEN }}