Skip to content

Downgrade hello-vulkan's kotlin to match the other samples. #277

Downgrade hello-vulkan's kotlin to match the other samples.

Downgrade hello-vulkan's kotlin to match the other samples. #277

Workflow file for this run

name: build
on:
push:
branches: [ main develop ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 17
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: build samples
run: |
export SAMPLE_CI_RESULT=0
source .ci_tools/build_samples.sh
eval "[[ $SAMPLE_CI_RESULT == 0 ]]"
- uses: pre-commit/[email protected]