File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -102,16 +102,14 @@ jobs:
102102 cudnn_tarball : " https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/linux-x86_64/cudnn-linux-x86_64-9.2.0.82_cuda12-archive.tar.xz"
103103 container : ${{ matrix.container }}
104104 steps :
105- - name : Setup dependencies and env
105+ - name : Setup Dependencies
106106 run : |
107107 apt-get update
108108 apt-get install -y build-essential automake autoconf pkg-config bc curl git libssl-dev gzip python3 ca-certificates \
109109 locales curl wget cmake zip unzip
110110 echo "${LANG} UTF-8" >> /etc/locale.gen
111111 locale-gen
112112 update-locale LANG=${LANG}
113- echo "NX_IREE_SOURCE_DIR=$(elixir -e 'IO.puts(Path.absname(~s(${{env.NX_IREE_SOURCE_DIR}})))')" > $GITHUB_ENV
114- echo "PKG_NAME=libnx_iree-linux-x86_64-nif-${{matrix.nif_version}}" >> $GITHUB_ENV
115113
116114 - name : checkout
117115 uses : actions/checkout@v4
@@ -121,6 +119,11 @@ jobs:
121119 version-file : .tool-versions
122120 version-type : strict
123121
122+ - name : Configure Env
123+ run : |
124+ echo "NX_IREE_SOURCE_DIR=$(elixir -e 'IO.puts(Path.absname(~s(${{env.NX_IREE_SOURCE_DIR}})))')" > $GITHUB_ENV
125+ echo "PKG_NAME=libnx_iree-linux-x86_64-nif-${{matrix.nif_version}}" >> $GITHUB_ENV
126+
124127 - name : Setup Ninja
125128 uses : ashutoshvarma/setup-ninja@master
126129 with :
You can’t perform that action at this time.
0 commit comments