8000 Fix the buffer returned by `readFile` being erroneously scanned by the GC. · vibe-d/vibe-core@96ddbbd · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix the buffer returned by readFile being erroneously scanned by the GC #490

Fix the buffer returned by readFile being erroneously scanned by the GC

Fix the buffer returned by readFile being erroneously scanned by the GC #490

Workflow file for this run

name: Musl tests
on:
pull_request:
branches:
- master
push:
branches:
- master
- github_actions
jobs:
main:
name: Musl tests
strategy:
fail-fast: false
matrix:
dc: [ dmd, ldc ]
include:
- { dc: dmd, dcname: dmd }
- { dc: ldc, dcname: ldc2 }
runs-on: ubuntu-latest
container: alpine
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: apk add --no-cache build-base dub ${{ matrix.dc }}
- name: Run tests
run: dub test --compiler=${{ matrix.dcname }}
0