mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2024-12-31 23:05:28 +00:00
Remove gitlab CI
This commit is contained in:
parent
ef9c50923a
commit
2994716b99
1
.github/FUNDING.yml
vendored
1
.github/FUNDING.yml
vendored
|
@ -1 +0,0 @@
|
|||
github: [flibitijibibo]
|
|
@ -1,58 +0,0 @@
|
|||
stages:
|
||||
- build
|
||||
- package
|
||||
- deploy
|
||||
|
||||
build_net461:
|
||||
image: mono
|
||||
stage: build
|
||||
only:
|
||||
- schedules
|
||||
script:
|
||||
- ./gitlab-ci/build-net461.sh
|
||||
artifacts:
|
||||
paths:
|
||||
- bin/
|
||||
tags:
|
||||
- docker
|
||||
|
||||
build_netcore:
|
||||
image: microsoft/dotnet:2.1-sdk
|
||||
stage: build
|
||||
only:
|
||||
- schedules
|
||||
script:
|
||||
- ./gitlab-ci/build-netcore.sh
|
||||
artifacts:
|
||||
paths:
|
||||
- bin/
|
||||
tags:
|
||||
- docker
|
||||
|
||||
package_nuget:
|
||||
image: mono
|
||||
stage: package
|
||||
only:
|
||||
- schedules
|
||||
script:
|
||||
- ./gitlab-ci/package.sh
|
||||
dependencies:
|
||||
- build_net461
|
||||
- build_netcore
|
||||
artifacts:
|
||||
paths:
|
||||
- '*.nupkg'
|
||||
|
||||
deploy_nuget:
|
||||
image: mono
|
||||
stage: deploy
|
||||
only:
|
||||
- schedules
|
||||
script:
|
||||
- ./gitlab-ci/deploy.sh
|
||||
dependencies:
|
||||
- package_nuget
|
||||
environment:
|
||||
name: nuget
|
||||
url: http://nuget.org/
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<package >
|
||||
<metadata>
|
||||
<id>SDL2-CS-Rolling</id>
|
||||
<version>2000.1.1</version>
|
||||
<authors>flibitijibibo</authors>
|
||||
<owners>beannaich</owners>
|
||||
<licenseUrl>https://github.com/flibitijibibo/SDL2-CS/blob/master/LICENSE</licenseUrl>
|
||||
<projectUrl>https://github.com/flibitijibibo/SDL2-CS</projectUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>SDL2# - C# Wrapper for SDL2</description>
|
||||
<copyright>Copyright 2013-2020</copyright>
|
||||
<tags>SDL2# SDL2 SDL</tags>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\bin\Debug\*.dll" target="lib/net461" />
|
||||
<file src="..\bin\Debug\*.dll.config" target="lib/net461" />
|
||||
<file src="..\bin\Debug\*.pdb" target="lib/net461" />
|
||||
<file src="..\bin\Debug\netstandard2.0\*.dll" target="lib/netstandard2.0" />
|
||||
<file src="..\bin\Debug\netstandard2.0\*.dll.config" target="lib/netstandard2.0" />
|
||||
<file src="..\bin\Debug\netstandard2.0\*.pdb" target="lib/netstandard2.0" />
|
||||
</files>
|
||||
</package>
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
msbuild /p:Configuration=Release SDL2-CS.csproj
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
dotnet build -c Release SDL2-CS.Core.csproj
|
|
@ -1,9 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
nuget setApiKey $NUGET_API_KEY -verbosity quiet
|
||||
|
||||
for package in `find *.nupkg`; do
|
||||
nuget push $package -source https://nuget.org/
|
||||
done
|
|
@ -1,9 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
version=`date +"%Y.%m.%d"`
|
||||
|
||||
nuspec="gitlab-ci/SDL2-CS.nuspec"
|
||||
|
||||
nuget pack $nuspec -Version $version
|
Loading…
Reference in a new issue