-
-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into fix1574
- Loading branch information
Showing
294 changed files
with
6,398 additions
and
6,042 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,14 @@ | ||
# Refer to https://hub.docker.com/_/microsoft-dotnet-sdk for available versions | ||
FROM mcr.microsoft.com/dotnet/sdk:7.0.101-jammy | ||
|
||
# Installing mono makes `dotnet test` work without errors even for net472. | ||
# But installing it takes a long time, so it's excluded by default. | ||
#RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | ||
#RUN echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | tee /etc/apt/sources.list.d/mono-official-stable.list | ||
#RUN apt-get update | ||
#RUN DEBIAN_FRONTEND=noninteractive apt-get install -y mono-devel | ||
|
||
# Clear the NUGET_XMLDOC_MODE env var so xml api doc files get unpacked, allowing a rich experience in Intellisense. | ||
# See https://github.com/dotnet/dotnet-docker/issues/2790 for a discussion on this, where the prioritized use case | ||
# was *not* devcontainers, sadly. | ||
ENV NUGET_XMLDOC_MODE= |
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,20 @@ | ||
{ | ||
"name": "Dev space", | ||
"dockerFile": "Dockerfile", | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/usr/bin/pwsh" | ||
}, | ||
"postCreateCommand": "./init.ps1 -InstallLocality machine", | ||
"extensions": [ | ||
"ms-azure-devops.azure-pipelines", | ||
"ms-dotnettools.csharp", | ||
"k--kato.docomment", | ||
"editorconfig.editorconfig", | ||
"pflannery.vscode-versionlens", | ||
"davidanson.vscode-markdownlint", | ||
"dotjoshjohnson.xml", | ||
"ms-vscode-remote.remote-containers", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vscode.powershell" | ||
] | ||
} |
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 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 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,9 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: / | ||
schedule: | ||
interval: monthly |
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,48 @@ | ||
name: unity | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
branches: | ||
- master | ||
- develop | ||
|
||
jobs: | ||
unity: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | ||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
global-json-file: global.json | ||
- name: copy assets | ||
run: src/MessagePack.UnityClient/copy_assets.sh | ||
- uses: actions/cache@v3 | ||
with: | ||
path: src/MessagePack.UnityClient/Library | ||
key: MessagePack-ubuntu | ||
- name: build | ||
uses: game-ci/unity-builder@v2 | ||
env: | ||
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE_2021 }} | ||
with: | ||
projectPath: src/MessagePack.UnityClient | ||
unityVersion: 2021.3.11f1 | ||
targetPlatform: StandaloneLinux64 | ||
buildMethod: PackageExporter.Export | ||
customParameters: /headless /ScriptBackend mono | ||
versioning: None | ||
- uses: Cysharp/Actions/.github/actions/check-metas@main # check meta files | ||
with: | ||
directory: src/MessagePack.UnityClient | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: MessagePack.unitypackage | ||
path: bin/*.unitypackage |
Oops, something went wrong.