Skip to content

Commit b37e4be

Browse files
committed
Define intel-sde-install action
1 parent 128a291 commit b37e4be

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

intel-sde-install/action.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "intel-sde-install"
2+
description: "Install Intel SDE"
3+
inputs:
4+
sde-full-version:
5+
description: "SDE full version"
6+
required: true
7+
runs:
8+
using: composite
9+
steps:
10+
- shell: bash
11+
run: |
12+
curl -JLO "https://downloadmirror.intel.com/813591/sde-external-${{ inputs.sde-full-version }}-lin.tar.xz"
13+
tar xvf sde-external-${{ inputs.sde-full-version }}-lin.tar.xz -C /opt
14+
15+
- shell: bash
16+
run: echo "/opt/sde-external-${{ inputs.sde-full-version }}-lin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)