Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sammycage authored Aug 28, 2024
1 parent 21aa9d9 commit 2d68495
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,42 +7,57 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build dependencies
with:
submodules: true
- name: Build with meson
run: |
pip install meson
pip install ninja
- name: Setup and Build
run: |
meson setup build
meson compile -C build
- name: Build with cmake
run: |
cmake .
cmake --build .
macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build dependencies
with:
submodules: true
- name: Build with meson
run: |
pip install meson
pip install ninja
- name: Setup and Build
run: |
meson setup build
meson compile -C build
- name: Build with cmake
run: |
cmake .
cmake --build .
windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install build dependencies
with:
submodules: true
- name: Build with meson
run: |
pip install meson
pip install ninja
- name: Setup and Build
run: |
meson setup build
meson compile -C build
- name: Build with cmake
run: |
cmake .
cmake --build .

0 comments on commit 2d68495

Please sign in to comment.