This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 'master'
Release 1.0.2 See merge request ii887522/nitro!37
- Loading branch information
Showing
38 changed files
with
1,238 additions
and
1,203 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
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
name: 'Repo Lockdown' | ||
|
||
on: | ||
issues: | ||
types: opened | ||
pull_request: | ||
types: opened | ||
issues: | ||
types: opened | ||
pull_request: | ||
types: opened | ||
|
||
jobs: | ||
lockdown: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/repo-lockdown@v2.0.0 | ||
with: | ||
github-token: ${{ github.token }} | ||
issue-labels: 'off-topic' | ||
issue-comment: 'This repository does not accept issues, see the README for more details.' | ||
skip-closed-issue-comment: true | ||
pr-comment: 'This repository does not accept pull requests, see the README for more details.' | ||
skip-closed-pr-comment: true | ||
lockdown: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/repo-lockdown@v2.0.0 | ||
with: | ||
github-token: ${{ github.token }} | ||
issue-labels: 'off-topic' | ||
issue-comment: 'This repository does not accept issues, see the README for more details.' | ||
skip-closed-issue-comment: true | ||
pr-comment: 'This repository does not accept pull requests, see the README for more details.' | ||
skip-closed-pr-comment: true |
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,5 @@ | ||
{ | ||
"cpplint.cpplintPath": "", | ||
"cpplint.lintMode": "workspace", | ||
"cpplint.lineLength": 256 | ||
} |
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 |
---|---|---|
@@ -1,4 +1 @@ | ||
docker run --rm --name nitro_debug_x86_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Debug /p:Platform=x86 | ||
docker run --rm --name nitro_debug_x64_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Debug /p:Platform=x64 | ||
docker run --rm --name nitro_release_x86_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Release /p:Platform=x86 | ||
docker run --rm --name nitro_release_x64_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Release /p:Platform=x64 | ||
env\Scripts\activate && cpplint --recursive --linelength=256 nitro\src\ && env\Scripts\deactivate && docker run --rm --name nitro_debug_x86_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Debug /p:Platform=x86 && docker run --rm --name nitro_debug_x64_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Debug /p:Platform=x64 && docker run --rm --name nitro_release_x86_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Release /p:Platform=x86 && docker run --rm --name nitro_release_x64_builder -w C:\nitro -v %CD%:C:\nitro ms-build-tools msbuild C:\nitro\nitro\nitro.sln /p:Configuration=Release /p:Platform=x64 |
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 |
---|---|---|
@@ -1,4 +1 @@ | ||
docker run --rm --name nitro_debug_x86_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Debug /p:Platform=x86 | ||
docker run --rm --name nitro_debug_x64_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Debug /p:Platform=x64 | ||
docker run --rm --name nitro_release_x86_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Release /p:Platform=x86 | ||
docker run --rm --name nitro_release_x64_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Release /p:Platform=x64 | ||
source env/bin/activate && cpplint --recursive --linelength=256 nitro/src/ && source env/bin/deactivate && docker run --rm --name nitro_debug_x86_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Debug /p:Platform=x86 && docker run --rm --name nitro_debug_x64_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Debug /p:Platform=x64 && docker run --rm --name nitro_release_x86_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Release /p:Platform=x86 && docker run --rm --name nitro_release_x64_builder -w C:/nitro -v $PWD:C:/nitro ms-build-tools msbuild C:/nitro/nitro/nitro.sln /p:Configuration=Release /p:Platform=x64 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
docker run --rm --name nitro_bundler -w C:\nitro -v %CD%:C:\nitro mcr.microsoft.com/windows/servercore:20H2 cmd /c "mkdir libs && cd libs && mkdir nitro-1.0.1 && cd nitro-1.0.1 && mkdir include && cd include && xcopy ..\..\..\nitro\src\main\ .\ /s && cd .. && mkdir lib && cd lib && mkdir x86 && cd x86 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\Release\nitro.lib .\ && cd .. && cd .. && mkdir x64 && cd x64 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\x64\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\x64\Release\nitro.lib .\ && cd .. && cd .. && cd .. && cd .. && cd .." | ||
docker run --rm --name nitro_zipper -w C:\nitro\libs -v %CD%\libs:C:\nitro\libs kiazhi/nanoserver.7-zip:1709-18.05 7z a nitro-1.0.1.zip nitro-1.0.1\ | ||
docker run --rm --name nitro_publisher -v %CD%\libs:C:\nitro\libs stefanscherer/curl-windows:7.58.0 --header "PRIVATE-TOKEN: %1" --upload-file C:\nitro\libs\nitro-1.0.1.zip https://gitlab.com/api/v4/projects/23530641/packages/generic/nitro/1.0.1/nitro-1.0.1.zip | ||
docker run --rm --name nitro_bundler -w C:\nitro -v %CD%:C:\nitro mcr.microsoft.com/windows/servercore:20H2 cmd /c "mkdir libs && cd libs && mkdir nitro-1.0.2 && cd nitro-1.0.2 && mkdir include && cd include && xcopy ..\..\..\nitro\src\main\ .\ /s && cd .. && mkdir lib && cd lib && mkdir x86 && cd x86 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\Release\nitro.lib .\ && cd .. && cd .. && mkdir x64 && cd x64 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\x64\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\x64\Release\nitro.lib .\ && cd .. && cd .. && cd .. && cd .. && cd .." | ||
docker run --rm --name nitro_zipper -w C:\nitro\libs -v %CD%\libs:C:\nitro\libs kiazhi/nanoserver.7-zip:1709-18.05 7z a nitro-1.0.2.zip nitro-1.0.2\ | ||
docker run --rm --name nitro_publisher -v %CD%\libs:C:\nitro\libs stefanscherer/curl-windows:7.58.0 --header "PRIVATE-TOKEN: %1" --upload-file C:\nitro\libs\nitro-1.0.2.zip https://gitlab.com/api/v4/projects/23530641/packages/generic/nitro/1.0.2/nitro-1.0.2.zip | ||
docker run --rm --name nitro_cleaner -w C:\nitro -v %CD%:C:\nitro mcr.microsoft.com/windows/servercore:20H2 cmd /c "rmdir libs /s /q" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
docker run --rm --name nitro_bundler -w C:/nitro -v $PWD:C:/nitro mcr.microsoft.com/windows/servercore:20H2 cmd /c "mkdir libs && cd libs && mkdir nitro-1.0.1 && cd nitro-1.0.1 && mkdir include && cd include && xcopy ..\..\..\nitro\src\main\ .\ /s && cd .. && mkdir lib && cd lib && mkdir x86 && cd x86 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\Release\nitro.lib .\ && cd .. && cd .. && mkdir x64 && cd x64 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\x64\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\x64\Release\nitro.lib .\ && cd .. && cd .. && cd .. && cd .. && cd .." | ||
docker run --rm --name nitro_zipper -w C:/nitro/libs -v $PWD/libs:C:/nitro/libs kiazhi/nanoserver.7-zip:1709-18.05 7z a nitro-1.0.1.zip nitro-1.0.1\ | ||
docker run --rm --name nitro_publisher -v $PWD/libs:C:/nitro/libs stefanscherer/curl-windows:7.58.0 --header "PRIVATE-TOKEN: %1" --upload-file C:\nitro\libs\nitro-1.0.1.zip https://gitlab.com/api/v4/projects/23530641/packages/generic/nitro/1.0.1/nitro-1.0.1.zip | ||
docker run --rm --name nitro_bundler -w C:/nitro -v $PWD:C:/nitro mcr.microsoft.com/windows/servercore:20H2 cmd /c "mkdir libs && cd libs && mkdir nitro-1.0.2 && cd nitro-1.0.2 && mkdir include && cd include && xcopy ..\..\..\nitro\src\main\ .\ /s && cd .. && mkdir lib && cd lib && mkdir x86 && cd x86 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\Release\nitro.lib .\ && cd .. && cd .. && mkdir x64 && cd x64 && mkdir Debug && cd Debug && copy ..\..\..\..\..\nitro\x64\Debug\nitro.lib .\ && cd .. && mkdir Release && cd Release && copy ..\..\..\..\..\nitro\x64\Release\nitro.lib .\ && cd .. && cd .. && cd .. && cd .. && cd .." | ||
docker run --rm --name nitro_zipper -w C:/nitro/libs -v $PWD/libs:C:/nitro/libs kiazhi/nanoserver.7-zip:1709-18.05 7z a nitro-1.0.2.zip nitro-1.0.2\ | ||
docker run --rm --name nitro_publisher -v $PWD/libs:C:/nitro/libs stefanscherer/curl-windows:7.58.0 --header "PRIVATE-TOKEN: $1" --upload-file C:\nitro\libs\nitro-1.0.2.zip https://gitlab.com/api/v4/projects/23530641/packages/generic/nitro/1.0.2/nitro-1.0.2.zip | ||
docker run --rm --name nitro_cleaner -w C:/nitro -v $PWD:C:/nitro mcr.microsoft.com/windows/servercore:20H2 cmd /c "rmdir libs /s /q" |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
docker run --rm --name nitro_installer -w C:\nitro -v %CD%:C:\nitro nitro-custom-node ncu.cmd -u && npm.cmd install | ||
python -m pip install virtualenv | ||
virtualenv env | ||
env\Scripts\activate && python -m pip install cpplint && env\Scripts\deactivate && docker run --rm --name nitro_installer -w C:\nitro -v %CD%:C:\nitro nitro-custom-node ncu.cmd -u && npm.cmd install |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
docker run --rm --name nitro_installer -w C:/nitro -v $PWD:C:/nitro nitro-custom-node ncu.cmd -u && npm.cmd install | ||
python -m pip install virtualenv | ||
virtualenv env | ||
source env/bin/activate && python -m pip install cpplint && source env/bin/deactivate && docker run --rm --name nitro_installer -w C:/nitro -v $PWD:C:/nitro nitro-custom-node ncu.cmd -u && npm.cmd install |
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
Oops, something went wrong.