1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

Remove ubuntu-16.04 and add missing links for nix/go (#821)

* fix: remove ubuntu-16.04

* fix: add missing links for nix/go

* fix: remove specific platform versions
This commit is contained in:
Ryan 2021-09-22 19:43:58 +00:00 committed by GitHub
parent 232423446a
commit b647b2c3f6
2 changed files with 5 additions and 10 deletions

View file

@ -6,14 +6,9 @@ import (
func (i *Input) newPlatforms() map[string]string {
platforms := map[string]string{
"ubuntu-latest": "node:12-buster-slim",
"ubuntu-20.04": "node:12-buster-slim",
"ubuntu-18.04": "node:12-buster-slim",
"ubuntu-16.04": "node:12-stretch-slim",
"windows-latest": "",
"windows-2019": "",
"macos-latest": "",
"macos-10.15": "",
"ubuntu-latest": "node:12-buster-slim",
"ubuntu-20.04": "node:12-buster-slim",
"ubuntu-18.04": "node:12-buster-slim",
}
for _, p := range i.platforms {