Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gegy committed Nov 29, 2023
1 parent b8486cf commit 2a5376c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build-java-bindings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build Translatador

on: push

# TODO: Use Release
env:
BUILD_TYPE: Debug

jobs:
windows-natives:
strategy:
fail-fast: false
matrix:
arch: [ x64, arm64 ]
include:
- arch: x64
msvc_arch: amd64
- arch: arm64
msvc_arch: amd64_arm64

name: Windows Natives (${{ matrix.arch }})
runs-on: windows-latest

env:
BUILD_ARCH: ${{matrix.arch}}

defaults:
run:
shell: cmd

steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive

- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.msvc_arch }}

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew build

0 comments on commit 2a5376c

Please sign in to comment.