Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit e310b2a

Browse files
committed
test new ci action
1 parent ba24064 commit e310b2a

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/check-xgl-docker.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- '*'
77
- '!master'
8-
pull_request:
98

109
jobs:
1110
build-and-test:

.github/workflows/psdb.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: PSDB for XGL
2+
3+
on:
4+
pull_request:
5+
6+
env:
7+
TASK_ID: $GITHUB_RUN_ID_$GITHUB_RUN_NUMBER
8+
9+
jobs:
10+
test:
11+
name: build
12+
runs-on: [self-hosted, build]
13+
steps:
14+
- name: Checkout AMDVLK
15+
run: |
16+
~/bin/repo init -u https://github.com/GPUOpen-Drivers/AMDVLK.git -b dev --depth=1
17+
~/bin/repo sync
18+
cmake -G Ninja -S drivers/xgl -B Release64
19+
cmake --build Release64
20+
echo "$GITHUB_RUN_ID_$GITHUB_RUN_NUMBER"
21+
echo "$TASK_ID"
22+
- name: Upload AMDVLK driver
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: $TASK_ID
26+
patch: Release64/icd/amdvlk64.so

0 commit comments

Comments
 (0)