Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create GH actions for mac and linux #44

Merged
merged 3 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Linux

on:
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: windows-latest

strategy:
fail-fast: false
matrix:
mode: [ debug, release ]
rhi: [ opengl ] # Add vulkan
# rhi: [ dx11, dx12, opengl, vulkan, metal ]

steps:
- name: Get current date as package key
id: cache_key
run: echo "key=$(date +'%W')" >> $GITHUB_ENV
shell: bash

- name: Checkout repository
uses: actions/checkout@v4

- name: Set xmake env
run: echo "XMAKE_GLOBALDIR=${{ github.workspace }}/xmake-global" >> $GITHUB_ENV

# Install xmake
- name: Setup xmake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
actions-cache-folder: .xmake-cache-W${{ env.key }}

- name: Update xmake repository
run: xmake repo --update

- name: Retrieve dependencies hash
id: dep_hash
run: echo "hash=$(xmake l utils.ci.packageskey)" >> $GITHUB_ENV
shell: bash

- name: Restore cached xmake dependencies
id: restore-depcache
uses: actions/cache/restore@v4
with:
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
key: ${{ matrix.rhi }}-${{ matrix.arch }}-${{ matrix.mode }}-${{ env.hash }}-W${{ env.key }}

- name: Check xmake packages directory exists
shell: bash
run: |
if [ -d "${{ env.XMAKE_GLOBALDIR }}/.xmake/packages" ]; then
echo "Packages directory exists."
ls -la "${{ env.XMAKE_GLOBALDIR }}/.xmake/packages"
else
echo "Packages directory does not exist."
fi

- name: Configure xmake and install dependencies
run: xmake config --mode=${{ matrix.mode }} --ccache=n --rhi=${{ matrix.rhi }} --yes

- name: Save cached xmake dependencies
if: ${{ !steps.restore-depcache.outputs.cache-hit }}
uses: actions/cache/save@v4
with:
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

- name: Build Visualizer
run: xmake --all --yes

- name: Run compile tests
run: xmake test */compile_pass

- name: Run tests
run: xmake test */run_5_seconds
80 changes: 80 additions & 0 deletions .github/workflows/macosx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: MacOSX

on:
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: macos-latest

strategy:
fail-fast: false
matrix:
mode: [ debug, release ]
rhi: [ metal, opengl ] # Add vulkan support
# rhi: [ dx11, dx12, opengl, vulkan ]

steps:
- name: Get current date as package key
id: cache_key
run: echo "key=$(date +'%W')" >> $GITHUB_ENV
shell: bash

- name: Checkout repository
uses: actions/checkout@v4

- name: Set xmake env
run: echo "XMAKE_GLOBALDIR=${{ github.workspace }}/xmake-global" >> $GITHUB_ENV

# Install xmake
- name: Setup xmake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
actions-cache-folder: .xmake-cache-W${{ env.key }}

- name: Update xmake repository
run: xmake repo --update

- name: Retrieve dependencies hash
id: dep_hash
run: echo "hash=$(xmake l utils.ci.packageskey)" >> $GITHUB_ENV
shell: bash

- name: Restore cached xmake dependencies
id: restore-depcache
uses: actions/cache/restore@v4
with:
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
key: ${{ matrix.rhi }}-${{ matrix.arch }}-${{ matrix.mode }}-${{ env.hash }}-W${{ env.key }}

- name: Check xmake packages directory exists
shell: bash
run: |
if [ -d "${{ env.XMAKE_GLOBALDIR }}/.xmake/packages" ]; then
echo "Packages directory exists."
ls -la "${{ env.XMAKE_GLOBALDIR }}/.xmake/packages"
else
echo "Packages directory does not exist."
fi

- name: Configure xmake and install dependencies
run: xmake config --mode=${{ matrix.mode }} --ccache=n --rhi=${{ matrix.rhi }} --yes

- name: Save cached xmake dependencies
if: ${{ !steps.restore-depcache.outputs.cache-hit }}
uses: actions/cache/save@v4
with:
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

- name: Build Visualizer
run: xmake --all --yes

- name: Run compile tests
run: xmake test */compile_pass

- name: Run tests
run: xmake test */run_5_seconds
Loading