Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kbz-8 committed Jan 12, 2025
1 parent 1422520 commit 56f65ee
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/msys2-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- uses: NcStudios/[email protected]

# Setup MSYS2
- uses: msys2/setup-msys2@v2
with:
Expand Down Expand Up @@ -87,3 +89,10 @@ jobs:
# Build the engine
- name: Build Pulse
run: xmake --yes

# Test the engine
- name: Build Pulse
run: |
xmake config --vulkan-tests=y --yes
xmake build --yes VulkanUnitTests
xmake run --yes VulkanUnitTests
9 changes: 9 additions & 0 deletions .github/workflows/windows-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- uses: NcStudios/[email protected]

# Force xmake to a specific folder (for cache)
- name: Set xmake env
run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
Expand Down Expand Up @@ -82,3 +84,10 @@ jobs:
# Build the engine
- name: Build Pulse
run: xmake --yes

# Test the engine
- name: Build Pulse
run: |
xmake config --vulkan-tests=y --yes
xmake build --yes VulkanUnitTests
xmake run --yes VulkanUnitTests

0 comments on commit 56f65ee

Please sign in to comment.