Commit 5cea740

Nick committed on
Merge branch 'hUGETracker' of github.com:SuperDisk/UGE into hUGETracker
commit 5cea740b49a7740322450e7d5c39d93762296e14 parent ce70727parent f1fd87f
2 changed files Diffed against the first of 2 parents. +6−4
Modified.github/workflows/build.yml +3−1
@@ -2,6 +2,7 @@ name: Build hUGETracker
2 2
3 on: 3 on:
4 - push 4 - push
5 - pull_request
5 6
6 jobs: 7 jobs:
7 build: 8 build:
@@ -24,7 +25,8 @@ jobs:
24 - name: Install Ubuntu dependencies 25 - name: Install Ubuntu dependencies
25 if: matrix.name == 'Linux' 26 if: matrix.name == 'Linux'
26 run: | 27 run: |
27 sudo apt install lcl-2.0 libsdl2-dev bison 28 sudo apt -qq update
29 sudo apt install -yq lcl-2.0 libsdl2-dev bison
28 curl -Lo rgbds.tar.gz 'https://github.com/gbdev/rgbds/releases/download/v0.5.1/rgbds-0.5.1.tar.gz' 30 curl -Lo rgbds.tar.gz 'https://github.com/gbdev/rgbds/releases/download/v0.5.1/rgbds-0.5.1.tar.gz'
29 tar xvf rgbds.tar.gz rgbds/{include,src,Makefile} 31 tar xvf rgbds.tar.gz rgbds/{include,src,Makefile}
30 cd rgbds 32 cd rgbds
Modifiedcodegen.pas +3−3
@@ -488,7 +488,7 @@ var
488 Proc.Parameters.Add(InFile); 488 Proc.Parameters.Add(InFile);
489 Proc.Execute; 489 Proc.Execute;
490 490
491 Result := Proc.ExitCode; 491 Result := Proc.ExitStatus;
492 end; 492 end;
493 493
494 function Link(OutFile: string; InFiles: array of string; Map: string = ''; 494 function Link(OutFile: string; InFiles: array of string; Map: string = '';
@@ -507,7 +507,7 @@ var
507 Proc.Parameters.Add(InFile); 507 Proc.Parameters.Add(InFile);
508 Proc.Execute; 508 Proc.Execute;
509 509
510 Result := Proc.ExitCode; 510 Result := Proc.ExitStatus;
511 end; 511 end;
512 512
513 function Fix(GBFile: string): integer; 513 function Fix(GBFile: string): integer;
@@ -519,7 +519,7 @@ var
519 Proc.Parameters.Add(GBFile); 519 Proc.Parameters.Add(GBFile);
520 Proc.Execute; 520 Proc.Execute;
521 521
522 Result := Proc.ExitCode; 522 Result := Proc.ExitStatus;
523 end; 523 end;
524 begin 524 begin
525 Song := OptimizeSong(Song); 525 Song := OptimizeSong(Song);