Skip to content

Commit

Permalink
Create windows_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksymT17 authored Sep 10, 2024
1 parent 586d4ca commit 2d95b6c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Windows build

on:
pull_request:
branches: [ "master" ]

jobs:
build-windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Clone aquamarine repo
run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/silber.git
shell: bash

- name: Build artifacts with Cmake
run: |
cd silber &&
echo "removing existing build folder..."
rm -rf build/ &&
mkdir build &&
echo "preparing new build with cmake..." &&
cd build/ &&
cmake .. &&
cmake --build . &&
echo "Build complete!"
shell: bash

0 comments on commit 2d95b6c

Please sign in to comment.