Skip to content

Update build-windows.yml #7

Update build-windows.yml

Update build-windows.yml #7

Workflow file for this run

name: build check windows
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-windows:
runs-on: windows-latest
steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3
# Step 2: Move to the parent directory and fetch dependencies
- name: Fetch dependencies
run: |
cd ..
git clone https://github.com/razterizer/Core.git
git clone https://github.com/razterizer/Termin8or.git
git clone https://github.com/razterizer/AudioLibSwitcher_OpenAL.git --recurse-submodules
# Step 3: Create 3rdparty directories
- name: Create 3rdparty directories
run: |
mkdir -p ${{ github.workspace }}/../../3rdparty/include/OpenAL_Soft
mkdir -p ${{ github.workspace }}/../../3rdparty/lib
# Step 4: Download OpenAL Soft
- name: Download OpenAL Soft
run: curl -L https://www.openal-soft.org/openal-binaries/openal-soft-1.23.1-bin.zip -o openal-soft.zip