Remove gitlab CI

This commit is contained in:
Shane Woolcock 2020-04-15 17:38:50 +09:30
parent ef9c50923a
commit 2994716b99
7 changed files with 0 additions and 106 deletions

1
.github/FUNDING.yml vendored
View file

@ -1 +0,0 @@
github: [flibitijibibo]

View file

@ -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/

View file

@ -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>

View file

@ -1,3 +0,0 @@
#!/bin/bash
msbuild /p:Configuration=Release SDL2-CS.csproj

View file

@ -1,3 +0,0 @@
#!/bin/bash
dotnet build -c Release SDL2-CS.Core.csproj

View file

@ -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

View file

@ -1,9 +0,0 @@
#!/bin/bash
set -e
version=`date +"%Y.%m.%d"`
nuspec="gitlab-ci/SDL2-CS.nuspec"
nuget pack $nuspec -Version $version