Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 0 additions & 4 deletions .github/workflows/codechecker_master_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,5 @@ jobs:
CODECHECKER_TOKEN: ${{ secrets.CODECHECKER_STORE_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
run: |
pwd
ls
touch ~/.codechecker.passwords.json
chmod 0600 ~/.codechecker.passwords.json
echo "{\"client_autologin\" : true,\"credentials\": {\"*\": \"store:$CODECHECKER_TOKEN\"}}" > ~/.codechecker.passwords.json
bash ./ci/github_analysis/codechecker_gate_master.sh
11 changes: 4 additions & 7 deletions .github/workflows/codechecker_pr_analysis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: codechecker-pr-analysis

# Triggers the workflow on push or pull request events.
on: [push, pull_request]
on:
pull_request:
types: [opened, edited, reopened, synchronize]

jobs:
codechecker-pr-analyis:
Expand Down Expand Up @@ -29,10 +31,5 @@ jobs:
CODECHECKER_TOKEN: ${{ secrets.CODECHECKER_STORE_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
run: |
pwd
ls
CodeChecker version
touch ~/.codechecker.passwords.json
chmod 0600 ~/.codechecker.passwords.json
echo "{\"client_autologin\" : true,\"credentials\": {\"https://codechecker-demo.eastus.cloudapp.azure.com\": \"store:$CODECHECKER_TOKEN\"}}" > ~/.codechecker.passwords.json
echo "{\"client_autologin\" : true,\"credentials\": {\"https://codechecker-demo.eastus.cloudapp.azure.com\": \"store:${CODECHECKER_TOKEN}\"}}" > ~/.codechecker.passwords.json
bash ./ci/github_analysis/codechecker_gate_pr.sh $GITHUB_REF
Loading