Skip to content

Commit

Permalink
Merge pull request #877 from DeinAlptraum/remove-old-ci
Browse files Browse the repository at this point in the history
Remove old AppVeyor and Travis CI files
  • Loading branch information
barbeque-squared authored Jul 29, 2024
2 parents e3c1b81 + 4731e18 commit 72e8473
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 270 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

45 changes: 0 additions & 45 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[![Build Status](https://travis-ci.org/UltraStar-Deluxe/USDX.svg?branch=master)](https://travis-ci.org/UltraStar-Deluxe/USDX)
[![License](https://img.shields.io/badge/license-GPLv2-blue.svg)](LICENSE)

# Welcome to UltraStar Deluxe (USDX) development!
Expand All @@ -11,7 +10,7 @@ The intention of this document is to introduce you to USDX development.
- Please use CamelCase naming. Classes/Units/Types/Functions should start with a capital letter and constants/values/instances should start with small letters
- You can use Windows or Linux or OS X for development just fine. See readme.md for linux / OS X install instructions.
- As soon as whatever you changed works somewhat and doesn't break much of general gameplay, please commit it to the git code repository. If you work on bigger parts, please use a separate branch and commit your changes there often, so that your work in progress is visible. No one will judge you on work-in-progress code quality - we don't get paid for this so screw the other people if they complain ;-) .
- There is travis continuous integration set up. It will email project members if build of the master branch or some other branch is broken. This is quite helpful because linux users and other more tech savy users tend to run the most recent code so that they can use all the neat new features. Please keep them happy by not breaking too much of general singstar-like karaoke gameplay on the master branch.
- There is Github Actions continuous integration set up. It will email project members if build of the master branch or some other branch is broken. This is quite helpful because linux users and other more tech savy users tend to run the most recent code so that they can use all the neat new features. Please keep them happy by not breaking too much of general singstar-like karaoke gameplay on the master branch.
- If you start working on something that is more then just a small code change, please create an issue in the git repository issue tracker for that and assign it to yourself, so the other developers don't touch it in the mean time.
- Please write somewhat reusable code and split big problems into smaller functions. :)
- If you have questions, feel free to ask them in the irc channel or on the issue tracker.
Expand Down
74 changes: 0 additions & 74 deletions appveyor.yml

This file was deleted.

6 changes: 2 additions & 4 deletions src/base/TextGL.pas
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,10 @@ procedure LoadFontFamilyNames;
SetLength(FontFamilyNames, 0);
for FontNameIndex := 0 to FontSections.Count-1 do
begin
//if (Sections[FontNameIndex].StartsWith('Font_')) then // .StartsWith() does not compile on Travis-CI
if (LeftStr(FontSections[FontNameIndex], 5) = 'Font_') then
if (FontSections[FontNameIndex].StartsWith('Font_')) then
begin
SetLength(FontFamilyNames, Length(FontFamilyNames) + 1);
//FontFamilyNames[FontNameIndex] := FontIni.ReadString(Sections[FontNameIndex], 'Name', Sections[FontNameIndex].Remove(0, 5)); // .Remove() does not compile on Travis-CI
FontFamilyNames[FontNameIndex] := FontIni.ReadString(FontSections[FontNameIndex], 'Name', Copy(FontSections[FontNameIndex], 5));
FontFamilyNames[FontNameIndex] := FontIni.ReadString(FontSections[FontNameIndex], 'Name', FontSections[FontNameIndex].Remove(0, 5));
end;
end;

Expand Down
29 changes: 0 additions & 29 deletions tools/travis/before_install.sh

This file was deleted.

54 changes: 0 additions & 54 deletions tools/travis/build.sh

This file was deleted.

58 changes: 0 additions & 58 deletions tools/travis/install.sh

This file was deleted.

1 change: 0 additions & 1 deletion tools/travis/lazarus
Submodule lazarus deleted from f59089

0 comments on commit 72e8473

Please sign in to comment.