Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
Added Build Check workflow.
  • Loading branch information
razterizer authored Sep 11, 2024
1 parent 10c0a0a commit c03b4fc
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build Check

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-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: Install OpenAL
- name: Install OpenAL
run: sudo apt install libopenal-dev

# Step 4: Change to the correct directory and build
- name: Build project
run: |
cd demos
./build_demo_1.sh
continue-on-error: false # Ensure errors are not bypassed

0 comments on commit c03b4fc

Please sign in to comment.