Skip to content

Commit

Permalink
Create build_minimal_windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksymT17 authored Feb 14, 2024
1 parent 5a7e5ec commit 140ee19
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build_minimal_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: C/C++ CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

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

steps:
- uses: actions/checkout@v3
- name: Install packages
run: sudo apt -y install git g++ cmake libsqlite3-dev
- name: Clone aquamarine repo
run: git clone https://github.com/MaksymT17/aquamarine.git
- name: Build artifacts with Cmake
run: |
cd aquamarine
./build.sh

0 comments on commit 140ee19

Please sign in to comment.