From 3d999cd3dbb552128975acb2e5831c863242bb49 Mon Sep 17 00:00:00 2001 From: Dagen Brock Date: Wed, 4 Mar 2020 12:51:18 -0600 Subject: [PATCH] typescript action to install --- Dockerfile | 29 ----------------- action.yml | 10 ++++++ dist/index.js | 60 +++++++++++++++++++++++++++++++++++ entrypoint.sh | 19 ----------- package-lock.json | 80 +++++++++++++++++++++++++++++++++++++++++++++++ package.json | 20 ++++++++++++ src/index.ts | 46 +++++++++++++++++++++++++++ tsconfig.json | 67 +++++++++++++++++++++++++++++++++++++++ 8 files changed, 283 insertions(+), 48 deletions(-) delete mode 100644 Dockerfile create mode 100644 action.yml create mode 100644 dist/index.js delete mode 100644 entrypoint.sh create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 src/index.ts create mode 100644 tsconfig.json diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 684c01a..0000000 --- a/Dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -FROM ubuntu:18.04 - - -# Update -RUN apt-get update - - -# Install packages -#RUN apt-get -yq install rsync openssh-client -RUN apt-get -yq install unzip curl python3 - - - -# Label -LABEL "com.github.actions.name"="Cadius" -LABEL "com.github.actions.description"="For creating and manipulating ProDOS disk images." -LABEL "com.github.actions.icon"="target" -LABEL "com.github.actions.color"="blue" - -LABEL "version"="0.0.0" -LABEL "repository"="http://github.com/digarok/cadius-action" -LABEL "homepage"="https://github.com/digarok/cadius-action" -LABEL "maintainer"="Dagen Brock " - - -# Copy entrypoint -ADD entrypoint.sh /entrypoint.sh -RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..6333ff8 --- /dev/null +++ b/action.yml @@ -0,0 +1,10 @@ +name: 'cadius-action' +description: 'Github Action to set up Cadius for ProDOS disk image manipulation' +author: 'Dagen Brock' +inputs: + includeProdos: # change this + description: 'Download Prodos 2.4.2 files to allow you to create a bootable disk.' + default: 'true' +runs: + using: 'node12' + main: 'dist/index.js' \ No newline at end of file diff --git a/dist/index.js b/dist/index.js new file mode 100644 index 0000000..ed7e289 --- /dev/null +++ b/dist/index.js @@ -0,0 +1,60 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; + result["default"] = mod; + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const os = __importStar(require("os")); +const util = __importStar(require("util")); +const path = __importStar(require("path")); +const toolCache = __importStar(require("@actions/tool-cache")); +const core = __importStar(require("@actions/core")); +function getDownloadURL(version) { + switch (os.type()) { + case 'Linux': + return util.format('https://github.com/digarok/cadius/releases/download/%s/cadius-ubuntu-latest-%s.zip', version, version); + case 'Darwin': + return util.format('https://github.com/digarok/cadius/releases/download/%s/cadius-macos-latest-%s.zip', version, version); + case 'Windows_NT': + default: + return util.format('https://github.com/digarok/cadius/releases/download/%s/cadius-windows-latest-%s.zip', version, version); + } +} +function downloadCadius(version) { + return __awaiter(this, void 0, void 0, function* () { + let cachedToolpath = toolCache.find('cadius', version); + if (!cachedToolpath) { + let downloadPath; + try { + downloadPath = yield toolCache.downloadTool(getDownloadURL(version)); + } + catch (exception) { + console.log(exception); + throw new Error(util.format("Failed to download Cadius from location ", getDownloadURL(version))); + } + const extractedPath = yield toolCache.extractZip(downloadPath); + cachedToolpath = yield toolCache.cacheDir(path.join(extractedPath, 'cadius'), 'cadius', version); + } + core.addPath(cachedToolpath); + }); +} +function run() { + return __awaiter(this, void 0, void 0, function* () { + let version = core.getInput('version', { 'required': true }); + yield downloadCadius(version); + console.log(`Cadius version: '${version}' has been downloaded and added to path`); + }); +} +run().catch(core.setFailed); diff --git a/entrypoint.sh b/entrypoint.sh deleted file mode 100644 index a64b2d4..0000000 --- a/entrypoint.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -CADZIP=https://github.com/digarok/cadius/releases/download/0.0.0/cadius-ubuntu-latest-0.0.0.zip - -curl -L $CADZIP -o cadius.zip -unzip -n cadius.zip -mv cadius /usr/bin - -if [ "$INPUT_INCLUDE_PRODOS" = "true" ]; then - echo "Grabbing ProDOS 2.4.2" - curl -k -L https://mirrors.apple2.org.za/ftp.apple.asimov.net/images/masters/prodos/ProDOS_2_4_2.dsk -o ProDOS_2_4_2.dsk - echo "Convert DSK to PO" - curl -k -L https://raw.githubusercontent.com/digarok/dsk2po/master/dsk2po.py -o dsk2po.py - /usr/bin/python3 dsk2po.py ProDOS_2_4_2.dsk - cadius extractvolume ProDOS_2_4_2.po . - echo "ProDOS 2.4.2 files available in ./PRODOS.2.4.2/ :" - ls ./PRODOS.2.4.2/ -fi -ls diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..9037b90 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,80 @@ +{ + "name": "cadius-action", + "version": "0.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@actions/core": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.3.tgz", + "integrity": "sha512-Wp4xnyokakM45Uuj4WLUxdsa8fJjKVl1fDTsPbTEcTcuu0Nb26IPQbOtjmnfaCPGcaoPOOqId8H9NapZ8gii4w==" + }, + "@actions/exec": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@actions/exec/-/exec-1.0.3.tgz", + "integrity": "sha512-TogJGnueOmM7ntCi0ASTUj4LapRRtDfj57Ja4IhPmg2fls28uVOPbAn8N+JifaOumN2UG3oEO/Ixek2A4NcYSA==", + "requires": { + "@actions/io": "^1.0.1" + } + }, + "@actions/http-client": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.6.tgz", + "integrity": "sha512-LGmio4w98UyGX33b/W6V6Nx/sQHRXZ859YlMkn36wPsXPB82u8xTVlA/Dq2DXrm6lEq9RVmisRJa1c+HETAIJA==", + "requires": { + "tunnel": "0.0.6" + } + }, + "@actions/io": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.0.2.tgz", + "integrity": "sha512-J8KuFqVPr3p6U8W93DOXlXW6zFvrQAJANdS+vw0YhusLIq+bszW8zmK2Fh1C2kDPX8FMvwIl1OUcFgvJoXLbAg==" + }, + "@actions/tool-cache": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@actions/tool-cache/-/tool-cache-1.3.1.tgz", + "integrity": "sha512-sKoEJv0/c7WzjPEq2PO12Sc8QdEp58XIBHMm3c4lUn/iZWgLz9HBeCuFGpLQjDvXJNfLZ4g+WD+rMjgOmpH4Ag==", + "requires": { + "@actions/core": "^1.2.0", + "@actions/exec": "^1.0.0", + "@actions/http-client": "^1.0.3", + "@actions/io": "^1.0.1", + "semver": "^6.1.0", + "uuid": "^3.3.2" + } + }, + "@types/node": { + "version": "12.12.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.29.tgz", + "integrity": "sha512-yo8Qz0ygADGFptISDj3pOC9wXfln/5pQaN/ysDIzOaAWXt73cNHmtEC8zSO2Y+kse/txmwIAJzkYZ5fooaS5DQ==", + "dev": true + }, + "@zeit/ncc": { + "version": "0.20.5", + "resolved": "https://registry.npmjs.org/@zeit/ncc/-/ncc-0.20.5.tgz", + "integrity": "sha512-XU6uzwvv95DqxciQx+aOLhbyBx/13ky+RK1y88Age9Du3BlA4mMPCy13BGjayOrrumOzlq1XV3SD/BWiZENXlw==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" + }, + "typescript": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", + "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..621c23d --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "cadius-action", + "version": "0.0.0", + "license": "MIT", + "scripts": { + "build": "tsc", + "pack": "ncc build dist/index.js" + }, + "dependencies": { + "@actions/core": "^1.2", + "@actions/exec": "^1.0.1", + "@actions/io": "^1.0.1", + "@actions/tool-cache": "^1.1.2" + }, + "devDependencies": { + "@types/node": "^12.11.5", + "@zeit/ncc": "^0.20.5", + "typescript": "^3.6.4" + } +} diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..02920bd --- /dev/null +++ b/src/index.ts @@ -0,0 +1,46 @@ +import * as os from 'os'; +import * as util from 'util'; +import * as path from 'path'; + +import * as toolCache from '@actions/tool-cache'; +import * as core from '@actions/core'; + +function getDownloadURL(version: string): string { + switch (os.type()) { + case 'Linux': + return util.format('https://github.com/digarok/cadius/releases/download/%s/cadius-ubuntu-latest-%s.zip', version, version); + + case 'Darwin': + return util.format('https://github.com/digarok/cadius/releases/download/%s/cadius-macos-latest-%s.zip', version, version); + case 'Windows_NT': + default: + return util.format('https://github.com/digarok/cadius/releases/download/%s/cadius-windows-latest-%s.zip', version, version); + + } +} + +async function downloadCadius(version: string) { + let cachedToolpath = toolCache.find('cadius', version); + if (!cachedToolpath) { + let downloadPath; + try { + downloadPath = await toolCache.downloadTool(getDownloadURL(version)); + } catch (exception) { + console.log(exception) + throw new Error(util.format("Failed to download Cadius from location ", getDownloadURL(version))); + } + + const extractedPath = await toolCache.extractZip(downloadPath); + cachedToolpath = await toolCache.cacheDir(path.join(extractedPath, 'cadius'), 'cadius', version); + } + + core.addPath(cachedToolpath) +} + +async function run() { + let version = core.getInput('version', { 'required': true }); + await downloadCadius(version); + console.log(`Cadius version: '${version}' has been downloaded and added to path`); +} + +run().catch(core.setFailed); \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..091a54f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,67 @@ +{ + "compilerOptions": { + /* Basic Options */ + // "incremental": true, /* Enable incremental compilation */ + "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ + "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ + //"lib": ["es6"], /* Specify library files to be included in the compilation. */ + // "allowJs": true, /* Allow javascript files to be compiled. */ + // "checkJs": true, /* Report errors in .js files. */ + // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + // "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + "outDir": "./dist", /* Redirect output structure to the directory. */ + "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + // "removeComments": true, /* Do not emit comments to output. */ + // "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + "strict": true, /* Enable all strict type-checking options. */ + // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + + /* Module Resolution Options */ + // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + }, + "exclude": [ + "node_modules", + "**/*.test.ts" + ] + } \ No newline at end of file