Skip to content

Commit b263bd3

Browse files
committed
Initial commit
0 parents  commit b263bd3

35 files changed

+2557
-0
lines changed

LICENSE.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) OPENRNDR and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+297
Large diffs are not rendered by default.

action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: 'Setup OpenGL'
2+
description: 'Sets up OpenSWR backed OpenGL rasterizer'
3+
runs:
4+
using: 'node12'
5+
main: 'index.js'

index.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const core = require('@actions/core')
2+
const {exec} = require('@actions/exec')
3+
const path = require('path')
4+
5+
try {
6+
var options = {
7+
env: {
8+
'PAYLOAD_PATH' : __dirname
9+
}
10+
}
11+
exec(path.join(__dirname, "setup-opengl.sh"), [], options)
12+
core.exportVariable('LD_LIBRARY_PATH', 'mesa-18.2.3/usr/local/lib/x86_64-linux-gnu')
13+
core.exportVariable('GALLIUM_DRIVER', 'swr')
14+
} catch(error) {
15+
core.setFailed(error.message)
16+
}

mesa-18.2.3.tar.gz

12.5 MB
Binary file not shown.

node_modules/@actions/core/README.md

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

node_modules/@actions/core/lib/command.d.ts

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

node_modules/@actions/core/lib/command.js

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

node_modules/@actions/core/lib/command.js.map

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

0 commit comments

Comments
 (0)