We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128a291 commit 7a5d96aCopy full SHA for 7a5d96a
1 file changed
intel-sde-install/action.yaml
@@ -0,0 +1,17 @@
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
+ # yamllint disable rule:line-length
11
+ - shell: bash
12
+ run: |
13
+ curl -JLO "https://downloadmirror.intel.com/813591/sde-external-${{ inputs.sde-full-version }}-lin.tar.xz"
14
+ tar xvf sde-external-${{ inputs.sde-full-version }}-lin.tar.xz -C /opt
15
16
17
+ run: echo "/opt/sde-external-${{ inputs.sde-full-version }}-lin" >> $GITHUB_PATH
0 commit comments