mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
67 lines
1.8 KiB
TypeScript
Executable file
67 lines
1.8 KiB
TypeScript
Executable file
#!/usr/bin/env tea
|
|
|
|
/*---
|
|
args:
|
|
- deno
|
|
- run
|
|
- --allow-read
|
|
- --allow-env
|
|
- --allow-write
|
|
---*/
|
|
|
|
import { panic } from "utils";
|
|
|
|
const platform = Deno.env.get("PLATFORM") ?? panic("$PLATFORM not set")
|
|
|
|
let os: string | string[]
|
|
let buildOs: string | string[]
|
|
let container: string | undefined
|
|
let testMatrix: { os: string | string[], container: string | undefined }[]
|
|
|
|
switch(platform) {
|
|
case "darwin+x86-64":
|
|
os = "macos-11"
|
|
// Using GHA resources for now, until we resolve network issues with our runners
|
|
// buildOs = ["self-hosted", "macOS", "X64"]
|
|
buildOs = os
|
|
testMatrix = [{ os, container: undefined }]
|
|
break
|
|
case "darwin+aarch64":
|
|
os = ["self-hosted", "macOS", "ARM64"]
|
|
buildOs = os
|
|
testMatrix = [{ os, container: undefined }]
|
|
break
|
|
case "linux+aarch64":
|
|
os = ["self-hosted", "linux", "ARM64"]
|
|
buildOs = os
|
|
testMatrix = [{ os, container: undefined }]
|
|
break
|
|
case "linux+x86-64":
|
|
os = "ubuntu-latest"
|
|
// Using GHA resources for now, until we resolve network issues with our runners
|
|
// buildOs = ["self-hosted", "linux", "X64"]
|
|
buildOs = os
|
|
container = "ghcr.io/teaxyz/infuser:latest"
|
|
testMatrix = [
|
|
{ os, container: undefined },
|
|
// { os: buildOs, container: undefined },
|
|
{ os, container },
|
|
{ os, container: "debian:buster-slim" },
|
|
]
|
|
break
|
|
default:
|
|
panic(`Invalid platform description: ${platform}`)
|
|
}
|
|
|
|
const output = `os=${JSON.stringify(os)}\n` +
|
|
`build-os=${JSON.stringify(buildOs)}\n` +
|
|
`container=${JSON.stringify(container)}\n` +
|
|
`test-matrix=${JSON.stringify(testMatrix)}\n`
|
|
|
|
Deno.stdout.write(new TextEncoder().encode(output))
|
|
|
|
if (Deno.env.get("GITHUB_OUTPUT")) {
|
|
const envFile = Deno.env.get("GITHUB_OUTPUT")!
|
|
await Deno.writeTextFile(envFile, output, { append: true})
|
|
}
|