Skip to content

Commit 2ab738c

Browse files
committed
Run docker from javascript
1 parent 9a639e9 commit 2ab738c

19 files changed

+1013
-181
lines changed

.babelrc.json

-3
This file was deleted.

.eslintrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"plugins": ["react", "jsx-a11y", "import", "prettier", "flowtype", "unicorn"],
1616
"settings": { "react": { "version": "latest" } },
1717
"rules": {
18-
"prettier/prettier": "error"
18+
"prettier/prettier": "error",
19+
"import/no-extraneous-dependencies": 0
1920
}
2021
}

.github/workflows/main.yml

+25-34
Original file line numberDiff line numberDiff line change
@@ -9,49 +9,40 @@ env:
99
PROJECT_PATH: test-project
1010

1111
jobs:
12-
# test:
13-
# name: Test the project
14-
# runs-on: ubuntu-latest
15-
# steps:
16-
# - uses: actions/checkout@v1
17-
# - uses: webbertakken/unity-activate@v1
18-
# - uses: webbertakken/unity-test-runner@v1.1
19-
# - uses: webbertakken/unity-return-license@v1
20-
# if: always()
21-
# - uses: actions/upload-artifact@v1
22-
# with:
23-
# name: Test results
24-
# path: artifacts/
12+
strategy:
13+
matrix:
14+
unityVersion:
15+
- 2019.2.11f1
16+
targetPlatform:
17+
- WebGL
18+
# - StandaloneOSX
19+
# - StandaloneWindows
20+
# - StandaloneWindows64
21+
# - StandaloneLinux64
22+
# - PS4
23+
# - XboxOne
24+
# - Switch
25+
- Android
26+
- iOS
27+
# - tvOS
28+
# - Lumin
29+
# - BJM
30+
# - WSAPlayer
2531

26-
buildForWebGL:
27-
name: Build for WebGL
28-
# needs: [test]
32+
buildForAllPlatforms:
33+
name: Build for ${{ matrix.targetPlatform }} on version ${{ matrix.unityVersion }}
2934
runs-on: ubuntu-latest
30-
steps: # webbertakken/unity-builder@v0.3-webgl
35+
steps:
3136
- uses: actions/checkout@v1
3237
- uses: webbertakken/unity-activate@v1
33-
- uses: ./
38+
- uses: ./ # webbertakken/unity-builder@v0.3-webgl
3439
with:
3540
projectPath: test-project
36-
targetPlatform: WebGL
37-
unityVersion: 2019.2.11f1
41+
targetPlatform: ${{ matrix.targetPlatform }}
42+
unityVersion: ${{ matrix.unityVersion }}
3843
- uses: webbertakken/unity-return-license@v1
3944
if: always()
4045
- uses: actions/upload-artifact@v1
4146
with:
4247
name: Build
4348
path: build
44-
# buildForAndroid:
45-
# name: Build for Android
46-
# # needs: [test]
47-
# runs-on: ubuntu-latest
48-
# steps: # webbertakken/unity-builder@v0.3-android
49-
# - uses: actions/checkout@v1
50-
# - uses: webbertakken/unity-activate@v1
51-
# - uses: ./
52-
# - uses: webbertakken/unity-return-license@v1
53-
# if: always()
54-
# - uses: actions/upload-artifact@v1
55-
# with:
56-
# name: Build
57-
# path: build

Dockerfile

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
ARG IMAGE_REPOSITORY
2-
ARG IMAGE_NAME
3-
ARG IMAGE_VERSION
4-
5-
FROM $IMAGE_REPOSITORY/$IMAGE_NAME:$IMAGE_VERSION
1+
ARG IMAGE
2+
FROM $IMAGE
63

74
LABEL "com.github.actions.name"="Unity - Builder"
85
LABEL "com.github.actions.description"="Build Unity projects for different platforms."

babel.config.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const esModules = ['lodash-es'].join('|');
2+
3+
module.exports = {
4+
ignore: [`/node_modules/(?!${esModules})`],
5+
presets: [
6+
[
7+
'@babel/preset-env',
8+
{
9+
targets: {
10+
node: true,
11+
},
12+
},
13+
],
14+
],
15+
};

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/run-unity-builder.sh

-104
This file was deleted.

jest.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const esModules = ['lodash-es'].join('|');
2+
3+
module.exports = {
4+
testEnvironment: 'node',
5+
moduleFileExtensions: ['js', 'jsx', 'json', 'vue'],
6+
transform: { '^.+\\.(js|jsx)?$': 'babel-jest' },
7+
transformIgnorePatterns: [`/node_modules/(?!${esModules})`],
8+
};

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77
"author": "Webber <webber@takken.io>",
88
"license": "MIT",
99
"scripts": {
10-
"build": "ncc build src/index.js -o dist -m",
11-
"watch": "yarn build -w",
12-
"start": "node dist/index.js",
10+
"build": "ncc build --out dist --minify",
1311
"lint": "prettier --check \"src/**/*.js\" && eslint src",
14-
"test": "jest --passWithNoTests"
12+
"test": "jest"
1513
},
1614
"dependencies": {
1715
"@actions/core": "^1.2.0",
@@ -21,6 +19,7 @@
2119
"devDependencies": {
2220
"@babel/cli": "7.7.5",
2321
"@babel/core": "7.7.5",
22+
"@babel/preset-env": "7.7.7",
2423
"@zeit/ncc": "0.20.5",
2524
"babel-eslint": "10.0.3",
2625
"eslint": "6.7.2",
@@ -35,6 +34,7 @@
3534
"husky": "4.0.0-beta.5",
3635
"jest": "24.9.0",
3736
"lint-staged": "9.5.0",
37+
"lodash-es": "4.17.15",
3838
"prettier": "1.19.1"
3939
},
4040
"husky": {

src/index.js

+15-27
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,26 @@
1+
import Action from './model/action';
2+
import Docker from './model/docker';
3+
import ImageTag from './model/image';
4+
import Input from './model/input';
5+
16
const core = require('@actions/core');
2-
const path = require('path');
3-
const { exec } = require('@actions/exec');
47

58
async function action() {
6-
// Explicitly notify about platform support
7-
if (process.platform !== 'linux') {
8-
throw new Error('Currently only Linux-based platforms are supported');
9-
}
10-
11-
// Input variables specified in workflows using "with" prop.
12-
const projectPath = core.getInput('projectPath', { default: './' });
13-
const targetPlatform = core.getInput('targetPlatform', { default: 'WebGL' });
14-
const unityVersion = core.getInput('unityVersion', { default: '2019.2.11f1' });
15-
const buildName = core.getInput('buildName', { default: 'TestBuild' });
16-
const buildsPath = core.getInput('buildsPath', { default: 'build' });
17-
const buildMethod = core.getInput('buildMethod', { default: '' });
18-
19-
// Determine image
20-
const IMAGE_UNITY_VERSION = unityVersion;
21-
const IMAGE_TARGET_PLATFORM = targetPlatform.toLowerCase();
9+
Action.checkCompatibility();
2210

23-
// Run appropriate docker image with given args
24-
const bootstrapper = path.join(__dirname, 'run-unity-builder.sh');
25-
await exec(`ls ${bootstrapper}`);
26-
await exec(`chmod +x ${bootstrapper}`);
27-
await exec(bootstrapper, [
28-
IMAGE_UNITY_VERSION,
29-
IMAGE_TARGET_PLATFORM,
30-
projectPath,
11+
const {
12+
unityVersion,
3113
targetPlatform,
14+
projectPath,
3215
buildName,
3316
buildsPath,
3417
buildMethod,
35-
]);
18+
} = Input.getFromUser();
19+
20+
const { dockerfile, workspace } = Action;
21+
const baseImage = new ImageTag({ unityVersion, targetPlatform });
22+
const builtImage = await Docker.build({ path: workspace, dockerfile, image: baseImage });
23+
await Docker.run(builtImage, { projectPath, buildName, buildsPath, buildMethod });
3624
}
3725

3826
action().catch(error => {

src/model/action.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import path from 'path';
2+
3+
export default class Action {
4+
static get supportedPlatforms() {
5+
return ['linux'];
6+
}
7+
8+
static get name() {
9+
return 'unity-builder';
10+
}
11+
12+
static get rootFolder() {
13+
return path.dirname(path.dirname(__dirname));
14+
}
15+
16+
static get dockerfile() {
17+
return `${Action.rootFolder}/Dockerfile`;
18+
}
19+
20+
static get workspace() {
21+
return process.env.GITHUB_WORKSPACE;
22+
}
23+
24+
static checkCompatibility() {
25+
const currentPlatform = process.platform;
26+
if (!Action.supportedPlatforms.includes(currentPlatform)) {
27+
throw new Error(`Currently ${currentPlatform}-platform is not supported`);
28+
}
29+
}
30+
}

src/model/action.test.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import path from 'path';
2+
import Action from './action';
3+
4+
describe('Action', () => {
5+
describe('compatibility check', () => {
6+
it('throws for anything other than linux', () => {
7+
if (process.platform !== 'linux') {
8+
expect(() => Action.checkCompatibility()).toThrow();
9+
} else {
10+
expect(() => Action.checkCompatibility()).not.toThrow();
11+
}
12+
});
13+
});
14+
15+
it('returns the root folder of the action', () => {
16+
const { rootFolder, name } = Action;
17+
18+
expect(path.basename(rootFolder)).toStrictEqual(name);
19+
});
20+
});

0 commit comments

Comments
 (0)