Skip to content

Commit

Permalink
Merge pull request #9 from rudderlabs/develop
Browse files Browse the repository at this point in the history
feat: pulled latest changes and added few features
  • Loading branch information
desusai7 committed Feb 16, 2023
2 parents 25f4de4 + 7d055eb commit 3aec9e1
Show file tree
Hide file tree
Showing 98 changed files with 3,089 additions and 448 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"husky": {
"version": "0.5.4",
"commands": [
"husky"
]
}
}
}
235 changes: 235 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,235 @@
name: Build and Unit Test Checks
on:
pull_request:
branches: [ master, develop ]
types: ['opened', 'reopened', 'synchronize']
paths-ignore:
- 'README.md'

jobs:
build_sdk:
name: Build Check for the .NET SDK
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.11

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

- name: Install dotnet-format
run: dotnet tool install -g dotnet-format

- name: Verify Code Formatting
run: dotnet format --check --verbosity diagnostic

- name: Install dependencies
run: dotnet restore RudderAnalytics/RudderAnalytics.csproj

- name: Build
run: dotnet build RudderAnalytics/RudderAnalytics.csproj --configuration Release --no-restore

- name: Cache SonarCloud packages
uses: actions/cache@v1
with:
path: ~\sonar\cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@v1
with:
path: .\.sonar\scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner

- name: Install SonarCloud scanner
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
shell: powershell
run: |
New-Item -Path .\.sonar\scanner -ItemType Directory
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
shell: powershell
run: |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"rudderlabs_rudder-sdk-.net2" /o:"rudderlabs" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
dotnet build RudderAnalytics/RudderAnalytics.csproj --configuration Release --no-restore
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
build_and_test_netcoreapp21:
name: Build and Quality Check for .NetCoreApp2.1
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.x

- name: Install dependencies
run: dotnet restore Test/Test.csproj

- name: Install dotnet-format
run: dotnet tool install -g dotnet-format

- name: Verify Code Formatting
run: dotnet format --check --verbosity diagnostic

- name: Build
run: dotnet build Test/Test.csproj --configuration Release --no-restore

- name: Execute Unit Test cases
run: dotnet test Test/Test.csproj --no-restore --verbosity normal

build_and_test_netstandard20:
name: Build and Quality Check for .NetStandard20
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.x

- name: Install dependencies
run: dotnet restore Test.NetStandard20/Test.NetStandard20.csproj

- name: Install dotnet-format
run: dotnet tool install -g dotnet-format

- name: Verify Code Formatting
run: dotnet format --check --verbosity diagnostic

- name: Build
run: dotnet build Test.NetStandard20/Test.NetStandard20.csproj --configuration Release --no-restore

- name: Execute Unit Test cases
run: dotnet test Test.NetStandard20/Test.NetStandard20.csproj --no-restore --verbosity normal

build_and_test_net50:
name: Build and Quality Check for .Net50
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

- name: Install dotnet-format
run: dotnet tool install -g dotnet-format

- name: Verify Code Formatting
run: dotnet format --check --verbosity diagnostic

- name: Install dependencies
run: dotnet restore Test.Net50/Test.Net50.csproj

- name: Build
run: dotnet build Test.Net50/Test.Net50.csproj --configuration Release --no-restore

- name: Execute Unit Test cases and collect data for code coverage
run: dotnet test Test.Net50/Test.Net50.csproj --no-restore --verbosity normal --collect:"XPlat Code Coverage" --results-directory Test.Net50/coverage

- name: Install the Report Generator tool
run: dotnet tool install -g dotnet-reportgenerator-globaltool

- name: Generate the Code Coverage Report
run: reportgenerator -reports:"Test.Net50/coverage/*/coverage.cobertura.xml" -targetdir:"Test.Net50/coveragereport" -reporttypes:"HtmlInline" -title:".Net50"

- name: Archive code coverage results
uses: actions/upload-artifact@v3
with:
name: Code Coverage Report for Test.Net50
path: Test.Net50/coveragereport/

build_and_test_net35:
name: Build and Quality Check for .Net35
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: setup-msbuild
uses: microsoft/setup-msbuild@v1.1

- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5

- name: Setup VSTest.console.exe
uses: darenm/Setup-VSTest@v1.2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

- name: Restore Packages
run: nuget restore Test.Net35/Test.Net35.csproj -SolutionDirectory ./

- name: Build
run: |
msbuild Test.Net35/Test.Net35.csproj /t:restore
msbuild Test.Net35/Test.Net35.csproj /p:Configuration=Release
- name: Test
run: vstest.console.exe Test.Net35/bin/Release/Test.Net35.dll

build_and_test_net45:
name: Build and Quality Check for .Net45
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup VSTest.console.exe
uses: darenm/Setup-VSTest@v1.2

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

- name: Install dotnet-format
run: dotnet tool install -g dotnet-format

- name: Verify Code Formatting
run: dotnet format --check --verbosity diagnostic

- name: Install dependencies
run: dotnet restore Test.Net45/Test.Net45.csproj

- name: Build
run: dotnet build Test.Net45/Test.Net45.csproj --configuration Release --no-restore

- name: Test
run: vstest.console.exe Test.Net45/bin/Release/Test.Net45.dll /TestAdapterPath:"Test.Net45/bin/Release"
18 changes: 18 additions & 0 deletions .github/workflows/check_pr_title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check PR title

on:
pull_request:
branches: ['develop', 'master']
types: ['opened', 'reopened', 'edited', 'synchronize']

jobs:
check_pr_title:
name: Check PR title
runs-on: ubuntu-latest

steps:
- name: Checkout source branch
uses: actions/checkout@v3

- name: Check PR title
uses: rudderlabs/github-action-check-pr-title@v1.0.7
55 changes: 55 additions & 0 deletions .github/workflows/notion_pr_sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Notion PR Sync

on:
issues:
types:
[
opened,
edited,
deleted,
transferred,
pinned,
unpinned,
closed,
reopened,
assigned,
unassigned,
labeled,
unlabeled,
locked,
unlocked,
milestoned,
demilestoned,
]
pull_request:
types:
[
assigned,
unassigned,
labeled,
unlabeled,
opened,
edited,
closed,
reopened,
synchronize,
converted_to_draft,
ready_for_review,
locked,
unlocked,
review_requested,
review_request_removed,
auto_merge_enabled,
auto_merge_disabled,
]

jobs:
request:
runs-on: ubuntu-latest
steps:
- name: Sync GitHub PRs to Notion
uses: sivashanmukh/github-notion-pr-sync@1.0.0
with:
notionKey: ${{ secrets.NOTION_BOT_KEY }}
notionDatabaseId: ${{ secrets.NOTION_PR_DB_ID }}
githubKey: ${{ secrets.PAT }}
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ x64/
*.vssscc
.builds
.vs

.env
# Visual C++ cache files
ipch/
*.aps
Expand Down Expand Up @@ -116,5 +116,8 @@ UpgradeLog*
**sublime**

.DS_STORE
.DS_Store
/.vs
/.vscode
coveragereport/
coverage/
22 changes: 22 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

## husky task runner examples -------------------
## Note : for local installation use 'dotnet' prefix. e.g. 'dotnet husky'

## run all tasks
#husky run

### run all tasks with group: 'group-name'
#husky run --group group-name

## run task with name: 'task-name'
#husky run --name task-name

## pass hook arguments to task
#husky run --args "$1" "$2"

## or put your custom commands -------------------
#echo 'Husky.Net is awesome!'

dotnet husky run && git add .
11 changes: 11 additions & 0 deletions .husky/task-runner.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"tasks": [
{
"name": "dotnet-format",
"group": "pre-commit",
"command": "dotnet",
"args": ["format", "--include", "${staged}"],
"include": ["**/*.cs", "**/*.vb"]
}
]
}
Loading

0 comments on commit 3aec9e1

Please sign in to comment.