jiro

Results 73 comments of jiro

I know that the installation is very slow on a Mac runner. https://github.com/jiro4989/setup-nim-action/pull/487 But no good solution has been found yet.

@Ethosa @fox0430 I will be making a major change to setup-nim-action. Until now, setup-nim-action depended on `choosenim`. However, it seems that installing using choosenim has become very slow. So I...

Hmm, please try to delete cache action. https://github.com/fox0430/moe/actions/runs/9810738115/job/27091529854#step:3:1

Yes, `devel` is not supported yet. I will do it soon.

@fox0430 I fixed `devel` version support. Please re-run your `setup-nim-action@v2-beta` CI.

@fox0430 Thanks for your help👍 It's too late for that today so I'll release `v2` tomorrow. And I will write `v2` documentations and migrations.

@Ethosa @fox0430 v2 version released. https://github.com/jiro4989/setup-nim-action/releases/tag/v2 Please use `jiro4989/setup-nim-action@v2`. See: [Migration guide](https://github.com/jiro4989/setup-nim-action?tab=readme-ov-file#migration-to-v2-from-v1)

try using not-fullpath nim command. nim exists in PATH. ([Log](https://github.com/HapticX/happyx/actions/runs/9825359062/job/27125416903#step:4:28)) ```diff run: | cd tests for file in $(ls -v testc*.nim); do echo "###===--- C Test for " $file "...

It looks that you didn't call setup-nim-action in the workflow. 1. actions/checkout@v4 2. actions/cache@v4 3. **jiro4989/setup-nim-action@v2**

add cache path to dependencies job. ```diff - uses: actions/cache@v4 with: path: | ~/.nimble + .nim_runtime key: ${{ runner.os }}-nimble-v2-${{ hashFiles('*.nimble') }} ``` and set `PATH` to after jobs. ```diff...