Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Cleaning up build scripts for new project locations and reconnecting …
Browse files Browse the repository at this point in the history
…Unit Tests.
  • Loading branch information
jessefreeman committed Mar 16, 2021
1 parent 4e64795 commit 937b713
Show file tree
Hide file tree
Showing 22 changed files with 1,160 additions and 460 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pixel-vision-8-feature-builder.yml
Expand Up @@ -136,7 +136,7 @@ jobs:
PixelVision8-v${{env.CURRENT}}-macOS.zip:Releases/Final/PixelVision8-macOS.zip
PixelVision8-v${{env.CURRENT}}-win.zip:Releases/Final/PixelVision8-win.zip
PixelVision8-v${{env.CURRENT}}-linux.zip:Releases/Final/PixelVision8-linux.zip
API-Examples-Disk-v${{env.CURRENT}}.pv8:Releases/Final/APIExamples.pv8
Art-Packs-Disk-v${{env.CURRENT}}.pv8:Releases/Final/ArtPacks.pv8
Demoscene-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Demoscene.pv8
Example-Games-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Games.pv8
API-Examples-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/APIExamples.pv8
Art-Packs-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/ArtPacks.pv8
Demoscene-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/Demoscene.pv8
Example-Games-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/Games.pv8
8 changes: 4 additions & 4 deletions Build/Tasks/disks.js
Expand Up @@ -5,30 +5,30 @@ gulp.task('release-api-examples-disk', function(){

return gulp.src("./Disks/APIExamples/**/*")
.pipe(zip("APIExamples.pv8"))
.pipe(gulp.dest(process.env.FINAL));
.pipe(gulp.dest(process.env.FINAL + "Disks/"));

})

gulp.task('release-art-pack-disk', function(){

return gulp.src("./Disks/ArtPacks/**/*")
.pipe(zip("ArtPacks.pv8"))
.pipe(gulp.dest(process.env.FINAL));
.pipe(gulp.dest(process.env.FINAL + "Disks/"));

})

gulp.task('release-games-disk', function(){

return gulp.src("./Disks/Games/**/*")
.pipe(zip("Games.pv8"))
.pipe(gulp.dest(process.env.FINAL));
.pipe(gulp.dest(process.env.FINAL + "Disks/"));

})

gulp.task('release-Demoscene-disk', function(){

return gulp.src("./Disks/Demoscene/**/*")
.pipe(zip("Demoscene.pv8"))
.pipe(gulp.dest(process.env.FINAL));
.pipe(gulp.dest(process.env.FINAL + "Disks/"));

})
2 changes: 1 addition & 1 deletion Build/Tasks/platforms/osx-x64.js
Expand Up @@ -3,7 +3,7 @@ const rename = require('gulp-rename');
const replace = require('gulp-string-replace');

gulp.task('mac-icon', function() {
return gulp.src("./Icon.icns")
return gulp.src("./Projects/PixelVision8/Icon.icns")
.pipe(rename('App.icns'))
.pipe(gulp.dest(process.env.FINAL + "/osx-x64/" + process.env.APP_NAME + ".app/Contents/Resources/"));
}
Expand Down
443 changes: 0 additions & 443 deletions PixelVision8.CoreDesktop.csproj

This file was deleted.

10 changes: 8 additions & 2 deletions PixelVision8.sln
@@ -1,8 +1,10 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVision8.CoreDesktop", "PixelVision8.CoreDesktop.csproj", "{2590A596-C437-4B7D-A91C-0AD59CB2DBBA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVision8.CoreDesktop", "Projects\PixelVision8\PixelVision8.CoreDesktop.csproj", "{2590A596-C437-4B7D-A91C-0AD59CB2DBBA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVisoin8.Tests", "Tests\PixelVisoin8.Tests.csproj", "{97F0347F-2A33-4302-9376-C8B46934F154}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVisoin8.Tests", "Projects\Tests\PixelVisoin8.Tests.csproj", "{97F0347F-2A33-4302-9376-C8B46934F154}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVision8Lite.CoreDesktop", "Projects\PixelVision8Lite\PixelVision8Lite.CoreDesktop.csproj", "{E466E63A-EF3F-4B0D-A83A-E67B6F7EC0D6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -18,5 +20,9 @@ Global
{97F0347F-2A33-4302-9376-C8B46934F154}.Debug|Any CPU.Build.0 = Debug|Any CPU
{97F0347F-2A33-4302-9376-C8B46934F154}.Release|Any CPU.ActiveCfg = Release|Any CPU
{97F0347F-2A33-4302-9376-C8B46934F154}.Release|Any CPU.Build.0 = Release|Any CPU
{E466E63A-EF3F-4B0D-A83A-E67B6F7EC0D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E466E63A-EF3F-4B0D-A83A-E67B6F7EC0D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E466E63A-EF3F-4B0D-A83A-E67B6F7EC0D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E466E63A-EF3F-4B0D-A83A-E67B6F7EC0D6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 937b713

Please sign in to comment.