forked from LeenkxTeam/LNXSDK
Update
This commit is contained in:
35
Kha/.github/ISSUE_TEMPLATE/bug_report.md
vendored
35
Kha/.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -1,35 +0,0 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Execution Environment:**
|
||||
- Host system (where you compile your code):
|
||||
- Target system (where you run your code):
|
||||
- IDE used (if any):
|
||||
- Kha revision:
|
||||
- Kha build output (Using Kha...):
|
||||
- Application output (if it runs):
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
||||
20
Kha/.github/ISSUE_TEMPLATE/feature_request.md
vendored
20
Kha/.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -1,20 +0,0 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
||||
2
Kha/.github/funding.yml
vendored
2
Kha/.github/funding.yml
vendored
@ -1,2 +0,0 @@
|
||||
github: RobDangerous
|
||||
patreon: RobDangerous
|
||||
29
Kha/.github/workflows/android-opengl.yml
vendored
29
Kha/.github/workflows/android-opengl.yml
vendored
@ -1,29 +0,0 @@
|
||||
name: Android (OpenGL)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: 'oracle'
|
||||
java-version: '17'
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js android -g opengl --kha . --from Tests/Empty --arch arm64 --compile
|
||||
29
Kha/.github/workflows/android-vulkan.yml
vendored
29
Kha/.github/workflows/android-vulkan.yml
vendored
@ -1,29 +0,0 @@
|
||||
name: Android (Vulkan)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: 'oracle'
|
||||
java-version: '17'
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js android -g vulkan --kha . --from Tests/Empty --arch arm64 --compile
|
||||
52
Kha/.github/workflows/dox.yml
vendored
52
Kha/.github/workflows/dox.yml
vendored
@ -1,52 +0,0 @@
|
||||
name: dox
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: krdlab/setup-haxe@v1
|
||||
with:
|
||||
haxe-version: 4.2.3
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install dox
|
||||
run: haxelib install dox
|
||||
- name: Get Submodules
|
||||
run: git submodule update --init --recursive
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Create documentation
|
||||
run: nodejs_bin/node make.js empty --kha . --from Tests/Empty
|
||||
- name: Clone website
|
||||
run: git clone -b gh-pages https://github.com/Kode/Kha.git Kha-pages
|
||||
- name: Remove old documentation
|
||||
run: rm -r Kha-pages/api
|
||||
- name: Copy new documentation
|
||||
run: cp -R build/pages Kha-pages/api
|
||||
- name: Set name
|
||||
run: git config --global user.name "Robbot"
|
||||
- name: Set email
|
||||
run: git config --global user.email "robbot2019@robdangero.us"
|
||||
- name: Add documentation
|
||||
run: git -C Kha-pages add .
|
||||
- name: Commit documentation
|
||||
id: commit
|
||||
continue-on-error: true
|
||||
run: git -C Kha-pages commit -m "Update documentation to $GITHUB_SHA."
|
||||
- name: Push documentation
|
||||
if: steps.commit.outcome == 'success'
|
||||
continue-on-error: true
|
||||
run: git -C Kha-pages push https://Kode-Robbot:$ROBBOT_PASS@github.com/Kode/Kha.git gh-pages
|
||||
env:
|
||||
ROBBOT_PASS: ${{ secrets.ROBBOT_PASS }}
|
||||
25
Kha/.github/workflows/html5.yml
vendored
25
Kha/.github/workflows/html5.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: HTML5
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js html5 --kha . --from Tests/Empty
|
||||
25
Kha/.github/workflows/html5worker.yml
vendored
25
Kha/.github/workflows/html5worker.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: HTML5 Worker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js html5worker --kha . --from Tests/Empty
|
||||
25
Kha/.github/workflows/ios-metal.yml
vendored
25
Kha/.github/workflows/ios-metal.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: iOS (Metal)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js ios -g metal --kha . --from Tests/Empty --nosigning --compile
|
||||
25
Kha/.github/workflows/ios-opengl.yml
vendored
25
Kha/.github/workflows/ios-opengl.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: iOS (OpenGL)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js ios -g opengl --kha . --from Tests/Empty --nosigning --compile
|
||||
25
Kha/.github/workflows/java.yml
vendored
25
Kha/.github/workflows/java.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: Java
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js java --kha . --from Tests/Empty
|
||||
25
Kha/.github/workflows/krom.yml
vendored
25
Kha/.github/workflows/krom.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: Krom
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js krom --kha . --from Tests/Empty
|
||||
29
Kha/.github/workflows/linux-hl-opengl.yml
vendored
29
Kha/.github/workflows/linux-hl-opengl.yml
vendored
@ -1,29 +0,0 @@
|
||||
name: Linux (HL, OpenGL)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Apt Update
|
||||
run: sudo apt-get update
|
||||
- name: Apt Install
|
||||
run: sudo apt-get install libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libxi-dev libxcursor-dev libudev-dev libwayland-dev wayland-protocols libxkbcommon-dev ninja-build --yes --quiet
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js linux-hl -g opengl --kha . --from Tests/Empty --compile
|
||||
29
Kha/.github/workflows/linux-opengl.yml
vendored
29
Kha/.github/workflows/linux-opengl.yml
vendored
@ -1,29 +0,0 @@
|
||||
name: Linux (OpenGL)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Apt Update
|
||||
run: sudo apt-get update
|
||||
- name: Apt Install
|
||||
run: sudo apt-get install libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libxi-dev libxcursor-dev libudev-dev libwayland-dev wayland-protocols libxkbcommon-dev ninja-build --yes --quiet
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js -g opengl --kha . --from Tests/Empty --compile
|
||||
33
Kha/.github/workflows/linux-vulkan.yml
vendored
33
Kha/.github/workflows/linux-vulkan.yml
vendored
@ -1,33 +0,0 @@
|
||||
name: Linux (Vulkan)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Get LunarG key
|
||||
run: wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc
|
||||
- name: Get LunarG apt sources
|
||||
run: sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-noble.list http://packages.lunarg.com/vulkan/lunarg-vulkan-noble.list
|
||||
- name: Apt Update
|
||||
run: sudo apt update
|
||||
- name: Apt Install
|
||||
run: sudo apt install libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libxi-dev libxcursor-dev libudev-dev vulkan-sdk libwayland-dev wayland-protocols libxkbcommon-dev ninja-build --yes --quiet
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js -g vulkan --kha . --from Tests/Empty --compile
|
||||
25
Kha/.github/workflows/macos-hl-metal.yml
vendored
25
Kha/.github/workflows/macos-hl-metal.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: macOS (HL, Metal)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js osx-hl -g metal --kha . --from Tests/Empty --compile
|
||||
25
Kha/.github/workflows/macos-metal.yml
vendored
25
Kha/.github/workflows/macos-metal.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: macOS (Metal)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js -g metal --kha . --from Tests/Empty --compile
|
||||
25
Kha/.github/workflows/macos-opengl.yml
vendored
25
Kha/.github/workflows/macos-opengl.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: macOS (OpenGL)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macOS-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js -g opengl --kha . --from Tests/Empty --compile
|
||||
25
Kha/.github/workflows/node.yml
vendored
25
Kha/.github/workflows/node.yml
vendored
@ -1,25 +0,0 @@
|
||||
name: Node.js
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: ./get_dlc
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Setup Node.js
|
||||
run: nodejs_bin/copysysbin.sh
|
||||
- name: Compile
|
||||
run: nodejs_bin/node make.js node --kha . --from Tests/Empty
|
||||
23
Kha/.github/workflows/uwp.yml
vendored
23
Kha/.github/workflows/uwp.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: UWP
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js windowsapp -v vs2022 --kha . --from Tests/Empty --compile
|
||||
23
Kha/.github/workflows/windows-direct3d11.yml
vendored
23
Kha/.github/workflows/windows-direct3d11.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: Windows (Direct3D 11)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js -v vs2022 -g direct3d11 --kha . --from Tests/Empty --compile
|
||||
23
Kha/.github/workflows/windows-direct3d12.yml
vendored
23
Kha/.github/workflows/windows-direct3d12.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: Windows (Direct3D 12)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js -v vs2022 -g direct3d12 --kha . --from Tests/Empty --compile
|
||||
23
Kha/.github/workflows/windows-hl-direct3d11.yml
vendored
23
Kha/.github/workflows/windows-hl-direct3d11.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: Windows (HL, Direct3D 11)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js windows-hl -v vs2022 -g direct3d11 --kha . --from Tests/Empty --compile
|
||||
23
Kha/.github/workflows/windows-opengl.yml
vendored
23
Kha/.github/workflows/windows-opengl.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: Windows (OpenGL)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js -v vs2022 -g opengl --kha . --from Tests/Empty --compile
|
||||
30
Kha/.github/workflows/windows-vulkan.yml
vendored
30
Kha/.github/workflows/windows-vulkan.yml
vendored
@ -1,30 +0,0 @@
|
||||
name: Windows (Vulkan)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Setup Vulkan
|
||||
run: |
|
||||
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/1.3.275.0/windows/VulkanSDK-1.3.275.0-Installer.exe" -OutFile VulkanSDK.exe
|
||||
$installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList @("--da", "--al", "-c", "in");
|
||||
$installer.WaitForExit();
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js -v vs2022 -g vulkan --kha . --from Tests/Empty --compile
|
||||
env:
|
||||
VULKAN_SDK: C:\VulkanSDK\1.3.275.0
|
||||
23
Kha/.github/workflows/wpf.yml
vendored
23
Kha/.github/workflows/wpf.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: WPF
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Get DLC
|
||||
run: .\get_dlc.bat
|
||||
- name: Get Node.js
|
||||
run: git clone https://github.com/Kode/nodejs_bin.git --depth 1
|
||||
- name: Compile
|
||||
run: .\nodejs_bin\node.exe make.js wpf --kha . --from Tests/Empty
|
||||
2
Kha/Tools/khamake/.github/funding.yml
vendored
2
Kha/Tools/khamake/.github/funding.yml
vendored
@ -1,2 +0,0 @@
|
||||
github: RobDangerous
|
||||
patreon: RobDangerous
|
||||
23
Kha/Tools/khamake/.github/workflows/build.yml
vendored
23
Kha/Tools/khamake/.github/workflows/build.yml
vendored
@ -1,23 +0,0 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install tslint
|
||||
run: sudo npm install -g tslint
|
||||
- name: Lint
|
||||
run: tslint -c tslint.json src/*.ts src/Exporters/*.ts
|
||||
- name: Compile
|
||||
run: tsc
|
||||
Reference in New Issue
Block a user