From 461fa909a4624b6d2f5a1a8aae4780d7c2d579b9 Mon Sep 17 00:00:00 2001 From: andrei Date: Sun, 9 Aug 2020 00:23:02 +0000 Subject: [PATCH] ci: add ability to publish --- .ci/pipeline.ts | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/.ci/pipeline.ts b/.ci/pipeline.ts index 06d1612..db2032f 100644 --- a/.ci/pipeline.ts +++ b/.ci/pipeline.ts @@ -4,16 +4,15 @@ import { spawnChildJob, } from "https://pkg.buildyboi.ci/buildy/core@0.0.7/mod.ts"; import * as Docker from "https://pkg.buildyboi.ci/buildy/docker@0.0.1/mod.ts"; +import { readSecrets } from "https://pkg.buildyboi.ci/buildy/core@0.0.7/secrets.ts"; -export async function runTests(job: Job) { - const version: string = job.args.version; - +async function getImage(version: string): Promise { const dockerFileTemplate = ` FROM python:${version}-buster ADD requirements.txt . - RUN pip install -r requirements.txt flake8 + RUN pip install -r requirements.txt flake8 twine `; const image = await Docker.buildImage({ @@ -21,14 +20,20 @@ export async function runTests(job: Job) { include: ["requirements.txt"], }); + return image.id; +} + +export async function runTests(job: Job) { + const imageId = await getImage(job.args.version); + pushStep("Tests"); await Docker.run(`python setup.py test`, { - image: image.id, + image: imageId, }); pushStep("Flake8"); await Docker.run(`flake8 disco/`, { - image: image.id, + image: imageId, }); } @@ -44,3 +49,21 @@ export async function run(job: Job) { }); } } + +export async function runRelease(job: Job) { + const imageId = await getImage("3.8"); + + const [twineUsername, twinePassword] = await readSecrets( + "TWINE_USERNAME", + "TWINE_PASSWORD" + ); + + await Docker.run(`python setup.py sdist`, { + image: imageId, + }); + + await Docker.run(`python3 -m twine upload dist/*`, { + image: imageId, + env: [`TWINE_USERNAME=${twineUsername}`, `TWINE_PASSWORD=${twinePassword}`], + }); +}