Skip to content

Commit

Permalink
Define intel-sde-install action
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanshade committed Feb 6, 2024
1 parent 128a291 commit b37e4be
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions intel-sde-install/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "intel-sde-install"
description: "Install Intel SDE"
inputs:
sde-full-version:
description: "SDE full version"
required: true
runs:
using: composite
steps:
- shell: bash
run: |
curl -JLO "https://downloadmirror.intel.com/813591/sde-external-${{ inputs.sde-full-version }}-lin.tar.xz"

Check failure on line 12 in intel-sde-install/action.yaml

View workflow job for this annotation

GitHub Actions / yamllint

12:81 [line-length] line too long (114 > 80 characters)
tar xvf sde-external-${{ inputs.sde-full-version }}-lin.tar.xz -C /opt
- shell: bash
run: echo "/opt/sde-external-${{ inputs.sde-full-version }}-lin" >> $GITHUB_PATH

Check failure on line 16 in intel-sde-install/action.yaml

View workflow job for this annotation

GitHub Actions / yamllint

16:81 [line-length] line too long (86 > 80 characters)

0 comments on commit b37e4be

Please sign in to comment.