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

Add GitHub Action for CI #1

Merged
merged 14 commits into from
Aug 6, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test
  • Loading branch information
LDAP committed Aug 6, 2024
commit 9c81fe15ac68c33fbb2a2a19b270deb6adf132a2
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
buildtype: [debugoptimized, release]
meson_version: ["1.5.1"]
steps:
- name: Install Vulkan SDK
uses: jakoch/install-vulkan-sdk-action@v1.0.4
with:
install_runtime: true
cache: true
stripdown: true
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Vulkan SDK
uses: jakoch/install-vulkan-sdk-action@v1.0.4
with:
install_runtime: true
cache: true
stripdown: true
- name: Install dependencies
run: python -m pip install meson==${{ matrix.meson_version }} ninja
- name: Configure Project
Expand Down
Loading