Export build script environment information to a well known location #2500
Workflow file for this run
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
| name: Linux CI | |
| on: | |
| push: | |
| paths-ignore: &docfiles | |
| - '**.md' | |
| - 'COPYING' | |
| - 'CREDITS' | |
| - 'INSTALL' | |
| - 'README' | |
| - 'docs/**' | |
| pull_request: | |
| paths-ignore: *docfiles | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build the Fedora testing environment | |
| run: ./mktree.oci build | |
| working-directory: ./tests | |
| - name: Fix kernel mmap rnd bits | |
| # High entropy setting in GH runner images >= 20240310.1.0 | |
| # causes ASAN blowing up here and there: | |
| # https://github.com/actions/runner-images/issues/9491 | |
| run: sudo sysctl vm.mmap_rnd_bits=28 | |
| - name: Run the test suite | |
| run: ./mktree.oci check --interactive=false -j$(nproc) | |
| working-directory: ./tests | |
| env: | |
| MKTREE_ENGINE: docker |