mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-06-01 14:29:33 +00:00
* fix(action): update SpacemiT toolchain URL and version Change-Id: If4cc1c738a855274103f8c3ad52daa33528acd0c * fix(action): add -L flag to curl command for URL redirection Change-Id: I9b6c37390f0c7a733a36308c8fb53d22d234ab06
20 lines
599 B
YAML
20 lines
599 B
YAML
name: "Linux - Setup SpacemiT Toolchain"
|
|
description: "Setup SpacemiT Toolchain for Linux"
|
|
inputs:
|
|
path:
|
|
description: "Installation path"
|
|
required: true
|
|
version:
|
|
description: "SpacemiT toolchain version"
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup SpacemiT Toolchain
|
|
id: setup
|
|
uses: ./.github/actions/unarchive-tar
|
|
with:
|
|
url: https://github.com/spacemit-com/toolchain/releases/download/v${{ inputs.version }}/spacemit-toolchain-linux-glibc-x86_64-v${{ inputs.version }}.tar.xz
|
|
path: ${{ inputs.path }}
|
|
strip: 1
|