Unexpected ambiguous call with fields over object with default fields
#5736
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # See https://github.com/juancarlospaco/nimrun-action/issues/3#issuecomment-1607344901 | |
| name: issue comments bisects | |
| on: | |
| issue_comment: | |
| types: created | |
| jobs: | |
| bisects: | |
| if: | | |
| github.event_name == 'issue_comment' && startsWith(github.event.comment.body, '!nim ') && github.event.issue.pull_request == null && github.event.comment.author_association != 'NONE' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [ubuntu-latest, windows-latest, macos-latest] | |
| name: ${{ matrix.platform }}-bisects | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install OpenSSL (Windows) | |
| if: | | |
| runner.os == 'Windows' | |
| run: choco install openssl.light --version=1.1.1.0 # OpenSSL 3.x removed SSL_library_init | |
| shell: 'powershell' | |
| # v2 wont work here, because uses "hardcoded" nim versions, action "dynamically" finds version with bug. | |
| - uses: jiro4989/setup-nim-action@v1 | |
| with: | |
| nim-version: 'devel' | |
| - uses: juancarlospaco/nimrun-action@nim | |
| if: | | |
| runner.os == 'Linux' && contains(github.event.comment.body, '-d:linux' ) || | |
| runner.os == 'Windows' && contains(github.event.comment.body, '-d:windows') || | |
| runner.os == 'macOS' && contains(github.event.comment.body, '-d:osx' ) || | |
| runner.os == 'Linux' && !contains(github.event.comment.body, '-d:linux') && !contains(github.event.comment.body, '-d:windows') && !contains(github.event.comment.body, '-d:osx') | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |