-
-
Notifications
You must be signed in to change notification settings - Fork 30
31 lines (27 loc) · 726 Bytes
/
job-test-linux.yml
File metadata and controls
31 lines (27 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Run tests for linux
#
name: linux Test Workflow
on:
workflow_call:
inputs:
configuration:
type: string
default: 'Debug'
architecture:
type: string
default: 'x64'
jobs:
test:
name: test-linux-${{ inputs.configuration }}
runs-on: ubuntu-24.04
steps:
- name: Download Artifacts
uses: actions/download-artifact@v6
with:
name: Build-linux-${{ inputs.configuration }}
- name: Update access permission of ZEngineTests
run: chmod +x ${{github.workspace}}/tests/ZEngineTests
- name: Run Tests
env:
LD_LIBRARY_PATH: ${{github.workspace}}/lib
run: ${{github.workspace}}/tests/ZEngineTests