splitting build and tests into separate workflows
This commit is contained in:
5
.github/workflows/Build.yml
vendored
5
.github/workflows/Build.yml
vendored
@@ -13,10 +13,7 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: mlugg/setup-zig@v2
|
||||
with:
|
||||
version: 0.15.1
|
||||
version: 0.15.2
|
||||
|
||||
- name: Building
|
||||
run: zig build
|
||||
|
||||
- name: Test
|
||||
run: zig build test-soft
|
||||
|
||||
22
.github/workflows/Test.yml
vendored
git.filemode.normal_file
22
.github/workflows/Test.yml
vendored
git.filemode.normal_file
@@ -0,0 +1,22 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: mlugg/setup-zig@v2
|
||||
with:
|
||||
version: 0.15.2
|
||||
|
||||
- name: Building
|
||||
run: zig build
|
||||
|
||||
- name: Test
|
||||
run: zig build test-soft
|
||||
@@ -1,4 +1,4 @@
|
||||
# Stroll Vulkan ICD
|
||||
# Stroll Vulkan ICD <a href="https://github.com/Kbz-8/VulkanDriver/actions/workflows/Build.yml"><img src="https://github.com/Kbz-8/VulkanDriver/actions/workflows/Build.yml/badge.svg"></a> <a href="https://github.com/Kbz-8/VulkanDriver/actions/workflows/Test.yml"><img src="https://github.com/Kbz-8/VulkanDriver/actions/workflows/Test.yml/badge.svg"></a>
|
||||
|
||||
<img align="right" src="https://matthew.kerwin.net.au/blog_files/kappa"/>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user