-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
551 changed files
with
21,526 additions
and
42,664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"csharpier": { | ||
"version": "0.26.4", | ||
"commands": [ | ||
"dotnet-csharpier" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ "main", "develop" ] | ||
pull_request: | ||
branches: [ "main", "develop" ] | ||
|
||
env: | ||
dotnet_version: 6.0.x | ||
|
||
jobs: | ||
code: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.dotnet_version }} | ||
- name: Restore tools | ||
run: dotnet tool restore | ||
- name: Code format | ||
run: dotnet csharpier --check src | ||
|
||
linux: | ||
runs-on: ubuntu-latest | ||
needs: code | ||
steps: | ||
- name: Install build tools | ||
run: sudo apt-get install -y cmake ninja-build | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.dotnet_version }} | ||
- name: Install local deps | ||
run: | | ||
chmod +x ./install-deps.sh | ||
./install-deps.sh | ||
- name: Setup native project | ||
run: cmake nativesrc --preset linux-debug | ||
- name: Build native code | ||
run: cmake --build nativesrc/out/build/linux-debug | ||
- name: Build | ||
run: dotnet build src -c LinuxDebug | ||
- name: Test | ||
run: dotnet test src --no-build --verbosity normal -c LinuxDebug | ||
|
||
windows: | ||
runs-on: windows-latest | ||
needs: code | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.dotnet_version }} | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
- name: Build | ||
shell: pwsh | ||
run: .\install-deps.ps1 | ||
- name: Setup native project | ||
run: cmake nativesrc --preset x64-debug | ||
- name: Build native code | ||
run: cmake --build nativesrc\out\build\x64-debug | ||
- name: Restore dependencies | ||
run: dotnet restore src | ||
- name: Build | ||
run: dotnet build src --no-restore -c Debug | ||
- name: Test | ||
run: dotnet test src --no-build --verbosity normal -c Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
120 changes: 0 additions & 120 deletions
120
Aurio/Aurio.FFmpeg.Proxy32/Aurio.FFmpeg.Proxy32.vcxproj
This file was deleted.
Oops, something went wrong.
36 changes: 0 additions & 36 deletions
36
Aurio/Aurio.FFmpeg.Proxy32/Aurio.FFmpeg.Proxy32.vcxproj.filters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.