Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Gegy committed Nov 28, 2023
1 parent 8e92a14 commit 2de2295
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build Translatador

on: push

env:
BUILD_TYPE: Release

jobs:
windows:
strategy:
fail-fast: false
matrix:
ARCH: [ x64, arm64 ]
runs-on: windows-latest

name: ${{ matrix.name }}

defaults:
run:
shell: cmd

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

- name: Create Build Directory
run: cmake -E make_directory ${{github.workspace}}/build

- name: Configure
working-directory: ${{github.workspace}}/build
run: cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
working-directory: ${{github.workspace}}/build
run: cmake --build . --config ${{env.BUILD_TYPE}} -j3

0 comments on commit 2de2295

Please sign in to comment.