init
This commit is contained in:
parent
3680798835
commit
f7eb0abf43
1 changed files with 12 additions and 8 deletions
20
action.yml
20
action.yml
|
|
@ -9,16 +9,20 @@ inputs:
|
||||||
description: a os string like "linux" "windows"
|
description: a os string like "linux" "windows"
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
jobs:
|
runs:
|
||||||
install_nim:
|
using: docker
|
||||||
runs-on: docker
|
|
||||||
env:
|
|
||||||
nimPath: "nim-${{inputs.nimVersion}}-${{inputs.os}}_x64.tar.xz"
|
|
||||||
nimUrl: "https://nim-lang.org/download/${{env.nimPath}}"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- run: echo "OK"
|
|
||||||
|
|
||||||
|
# jobs:
|
||||||
|
# install_nim:
|
||||||
|
# runs-on: docker
|
||||||
|
# env:
|
||||||
|
# nimPath: "nim-${{inputs.nimVersion}}-${{inputs.os}}_x64.tar.xz"
|
||||||
|
# nimUrl: "https://nim-lang.org/download/${{env.nimPath}}"
|
||||||
|
#
|
||||||
|
# steps:
|
||||||
|
# - run: echo "OK"
|
||||||
|
#
|
||||||
# ## Tries to use the cached version of the nim tar ball
|
# ## Tries to use the cached version of the nim tar ball
|
||||||
# - name: cache restore
|
# - name: cache restore
|
||||||
# id: cachestep1
|
# id: cachestep1
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue