-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanalyze-unsafe-code.sh
47 lines (40 loc) · 1.67 KB
/
analyze-unsafe-code.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
: ${GH_PR_ID:="109896"} # PR to analyze
# Install local dotnet
wget -O dotnet-installer.sh \
https://raw.githubusercontent.com/EgorBo/DotnetScripts/refs/heads/main/dotnet-installer.sh && \
chmod +x dotnet-installer.sh
source dotnet-installer.sh
installDotnet 8.0
installDotnet 9.0
if [ ! -d "runtime" ]; then
git clone --no-tags --single-branch --quiet https://github.com/dotnet/runtime.git
else
pushd runtime
git fetch origin && git checkout main && git pull origin main && git clean -ffddxx
popd
fi
if [ ! -d "UnsafeCodeAnalyzer" ]; then
git clone --no-tags --single-branch --quiet https://github.com/EgorBo/UnsafeCodeAnalyzer.git
else
pushd UnsafeCodeAnalyzer
git fetch origin
git checkout main
git pull origin main
git clean -ffddxx
popd
fi
dotnet run -c Release --project UnsafeCodeAnalyzer/src/UnsafeCodeAnalyzer.csproj -- analyze --dir runtime --report before.md --preset DotnetRuntimeRepo
pushd runtime
# Fetch PR
CURRENT_MAIN=$(git rev-parse HEAD)
BRANCH_NAME=PR_BRANCH_$GH_PR_ID_$RANDOM
git fetch origin pull/$GH_PR_ID/head:${BRANCH_NAME}
git switch ${BRANCH_NAME}
git clean -ffddxx
git rebase --onto $CURRENT_MAIN main || true
git clean -ffddxx
popd
dotnet run -c Release --project UnsafeCodeAnalyzer/src/UnsafeCodeAnalyzer.csproj -- analyze --dir runtime --report after.md --preset DotnetRuntimeRepo
dotnet run -c Release --project UnsafeCodeAnalyzer/src/UnsafeCodeAnalyzer.csproj -- compare --base before.md --diff after.md --output report_changes.md --only-changes true
dotnet run -c Release --project UnsafeCodeAnalyzer/src/UnsafeCodeAnalyzer.csproj -- compare --base before.md --diff after.md --output report_full.md --only-changes false