diff --git a/.github/workflows/ci-nimbus.yml b/.github/workflows/ci-nimbus.yml index a83fcde..e0d33f5 100644 --- a/.github/workflows/ci-nimbus.yml +++ b/.github/workflows/ci-nimbus.yml @@ -29,14 +29,14 @@ jobs: os: linux builder: ubuntu-20.04 shell: bash - - target: - os: macos - builder: macos-12 - shell: bash - - target: - os: windows - builder: windows-2019 - shell: msys2 {0} + # - target: + # os: macos + # builder: macos-12 + # shell: bash + # - target: + # os: windows + # builder: windows-2019 + # shell: msys2 {0} defaults: run: @@ -51,39 +51,6 @@ jobs: with: submodules: true - - name: MSYS2 (Windows amd64) - if: runner.os == 'Windows' && matrix.target.cpu == 'amd64' - uses: msys2/setup-msys2@v2 - with: - path-type: inherit - install: >- - base-devel - git - mingw-w64-x86_64-toolchain - - - name: Restore Nim DLLs dependencies (Windows) from cache - if: runner.os == 'Windows' - id: windows-dlls-cache - uses: actions/cache@v2 - with: - path: external/dlls - key: 'dlls' - - - name: Install DLL dependencies (Windows) - if: > - steps.windows-dlls-cache.outputs.cache-hit != 'true' && - runner.os == 'Windows' - run: | - mkdir external - curl -L "https://nim-lang.org/download/windeps.zip" -o external/windeps.zip - 7z x external/windeps.zip -oexternal/dlls - - - name: Path to cached dependencies (Windows) - if: > - runner.os == 'Windows' - run: | - echo '${{ github.workspace }}'"/external/dlls" >> $GITHUB_PATH - - name: Derive environment variables run: | if [[ '${{ matrix.target.cpu }}' == 'amd64' ]]; then diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d47c378..623720b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -163,6 +163,19 @@ jobs: ${{ github.workspace }} / .nimble key: ${{ matrix.target.os }}-${{ matrix.target.cpu }}-dotnimble-${{ hashFiles('nimble.lock') }} + - name: Check ENV + run: | + echo ENV: + env + which nim + which nimble + + nim -v + nimble -v + + find ./.nimble/ + find ~/.nimble/ + - name: Setup Deps run: | nimble install -d