Skip to content
Snippets Groups Projects
Select Git revision
  • 0b66cd33bd4d434112b6bcd8ca65f37e84a5854a
  • main default protected
  • release-0.15
  • automated-updates-main
  • release-0.13
  • automated-updates-release-0.13
  • release-0.14
  • release-0.10
  • release-0.11
  • release-0.12
  • fix-versions-action
  • versions-fix
  • release-0.9
  • release-0.8
  • release-0.7
  • release-0.6
  • release-0.5
  • release-0.4
  • release-0.3
  • release-0.1
  • release-0.2
  • v0.15.0
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.0
  • v0.5.0
  • v0.4.0
  • v0.3.0
  • v0.2.0
  • v0.1.0
36 results

jsonnet-docker-image

Blame
  • api.ts 788 B
    import type { PlatformId } from '../../constants';
    import * as azure from './azure';
    import * as bitbucket from './bitbucket';
    import * as bitbucketServer from './bitbucket-server';
    import * as codecommit from './codecommit';
    import * as gerrit from './gerrit';
    import * as gitea from './gitea';
    import * as github from './github';
    import * as gitlab from './gitlab';
    import * as local from './local';
    import type { Platform } from './types';
    
    const api = new Map<PlatformId, Platform>();
    export default api;
    
    api.set(azure.id, azure);
    api.set(bitbucket.id, bitbucket);
    api.set(bitbucketServer.id, bitbucketServer);
    api.set(codecommit.id, codecommit);
    api.set(gerrit.id, gerrit);
    api.set(gitea.id, gitea);
    api.set(github.id, github);
    api.set(gitlab.id, gitlab);
    api.set(local.id, local);