libgit2 fixes for memory corruptions - against libgit2 1.4.2 #10
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
| on: [push, pull_request] | |
| name: CI | |
| env: | |
| RKT_PKG: libgit2 | |
| jobs: | |
| build: | |
| name: "Build on '${{ matrix.os }} with Racket '${{ matrix.racket-version }}'" | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| experimental: [ false ] | |
| os: | |
| - ubuntu-20.04 # glibc 2.31 | |
| - macos-11 # oldest available on GitHub Actions | |
| - windows-2019 # likewise | |
| racket-version: | |
| # needs https://github.com/racket/racket/commit/4f43400 (8.4) | |
| - "stable" | |
| - "8.4" | |
| include: | |
| - os: ubuntu-20.04 | |
| experimental: true | |
| racket-version: "current" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install Racket | |
| uses: Bogdanp/setup-racket@v1.10 | |
| with: | |
| version: ${{ matrix.racket-version }} | |
| architecture: "x64" | |
| distribution: "full" | |
| - name: Install Package and its Dependencies | |
| run: raco pkg install --auto --batch ${{ env.RKT_PKG }}/ | |
| - name: Run Tests | |
| run: raco test -x -p ${{ env.RKT_PKG }} | |
| - name: Check Package Dependencies | |
| run: raco setup --check-pkg-deps --pkgs ${{ env.RKT_PKG }} |