File size: 3,941 Bytes
5641073
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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());
    });
};
import { writeFileSync } from 'fs.js';
import { dump } from 'js-yaml.js';
import fetch from 'node-fetch.js';
import { join } from 'path.js';
const minVersion = 64;
(() => __awaiter(void 0, void 0, void 0, function* () {
    const res = yield fetch('https://nodejs.org/dist/index.json');
    if (!res.ok) {
        throw new Error(`${res.status} error from Node.js releases page`);
    }
    const releases = yield res.json();
    const buildVersion = new Map();
    const versionMap = {};
    for (const release of releases) {
        const moduleVersion = Number(release.modules);
        if (!moduleVersion || moduleVersion < minVersion) {
            break;
        }
        versionMap[release.version] = Number(moduleVersion);
        if (buildVersion.has(moduleVersion)) {
            continue;
        }
        buildVersion.set(moduleVersion, release.version);
    }
    const buildYaml = {
        name: 'Generate Binaries',
        on: {
            push: {
                branches: ['generate-binary'],
            },
        },
        jobs: {
            build: {
                name: 'Build',
                'runs-on': '${{ matrix.os }}',
                strategy: {
                    matrix: { os: ['macos-latest', 'ubuntu-latest', 'windows-latest'] },
                },
                steps: [
                    { uses: 'actions/checkout@master' },
                    { run: 'mkdir dist' },
                    {
                        uses: 'actions-rs/toolchain@v1',
                        with: { target: 'wasm32-unknown-unknown', toolchain: 'nightly' },
                    },
                    ...[...buildVersion.entries()]
                        .map(([moduleVersion, nodeVersion], i) => [
                        { uses: 'actions/setup-node@v1', with: { 'node-version': nodeVersion } },
                        {
                            // See: https://github.com/actions/setup-node/issues/68
                            shell: 'powershell',
                            name: 'patch node-gyp for VS 2019',
                            run: 'npm install --global node-gyp@latest\r\nnpm prefix -g | % {npm config set node_gyp "$_\\node_modules\\node-gyp\\bin\\node-gyp.js"}',
                            if: "matrix.os == 'windows-latest'",
                        },
                        i === 0
                            ? { run: 'npm install neon-cli rimraf' }
                            : { run: './node_modules/.bin/rimraf rs/native/target' },
                        { run: '../node_modules/.bin/neon build --release', 'working-directory': 'rs' },
                        { run: `mv rs/native/index.node dist/\${{ matrix.os }}-${moduleVersion}.node` },
                    ])
                        .reduce((acc, v) => [...acc, ...v], []),
                    {
                        uses: 'actions/upload-artifact@v1',
                        with: { name: 'dist', path: 'dist' },
                    },
                ],
            },
        },
    };
    writeFileSync(join(__dirname, '..', '..', '.github', 'workflows', 'build-neon.yml'), dump(buildYaml));
    writeFileSync(join(__dirname, '..', '..', 'targets.json'), JSON.stringify(versionMap));
}))();
//# sourceMappingURL=generate-tasks.js.map