diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 18b9c28aad..39bd74ee1a 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -171,7 +171,7 @@ jobs: strategy: fail-fast: false matrix: - committish: [ 'master' ] + committish: [ 'master', 'tgs-min-compat' ] runs-on: ubuntu-latest steps: - name: Setup dotnet diff --git a/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs b/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs index ceb95a810f..5175c7dc8a 100644 --- a/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs +++ b/src/Tgstation.Server.Host/Components/Engine/OpenDreamInstaller.cs @@ -152,7 +152,7 @@ namespace Tgstation.Server.Host.Components.Engine progressSection2, cancellationToken); - if (!await repo.CommittishIsParent("fab769776dada6b9bcad546094d78c604049e0e9", cancellationToken)) + if (!await repo.CommittishIsParent("tgs-min-compat", cancellationToken)) throw new JobException(ErrorCode.OpenDreamTooOld); return new RepositoryEngineInstallationData(IOManager, repo, InstallationSourceSubDirectory);