Update Kinc #556
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 Submodules | |
run: ./get_dlc | |
- name: Compile Shader | |
working-directory: Shader | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile Texture | |
working-directory: Texture | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile MultiWindow | |
working-directory: MultiWindow | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile ComputeShader | |
working-directory: ComputeShader | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile TextureArray | |
working-directory: TextureArray | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile ShaderG5 | |
working-directory: ShaderG5 | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 00_empty | |
working-directory: 00_empty | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 01_triangle | |
working-directory: 01_triangle | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 02_matrix | |
working-directory: 02_matrix | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 03_colored_cube | |
working-directory: 03_colored_cube | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 04_textured_cube | |
working-directory: 04_textured_cube | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 05_camera_controls | |
working-directory: 05_camera_controls | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 06_render_targets | |
working-directory: 06_render_targets | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 07_multiple_render_targets | |
working-directory: 07_multiple_render_targets | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 08_float_render_targets | |
working-directory: 08_float_render_targets | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 09_depth_render_targets | |
working-directory: 09_depth_render_targets | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 10_cubemap | |
working-directory: 10_cubemap | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 11_instanced_rendering | |
working-directory: 11_instanced_rendering | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 12_set_render_target_depth | |
working-directory: 12_set_render_target_depth | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 13_generate_mipmaps | |
working-directory: 13_generate_mipmaps | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 14_set_mipmap | |
working-directory: 14_set_mipmap | |
run: ../Kinc/make android -g vulkan --compile | |
- name: Compile 15_deinterleaved_buffers | |
working-directory: 15_deinterleaved_buffers | |
run: ../Kinc/make android -g vulkan --compile |