Implemented Z_IMMUTABLE flag #2
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: Test immutable bit | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test-immutable: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| include: | |
| - os: ubuntu-latest | |
| deps_install: brew install autoconf automake libtool | |
| container_options: --privileged | |
| - os: macos-latest | |
| deps_install: brew install autoconf automake libtool | |
| runs-on: ${{ matrix.os }} | |
| container: | |
| image: ${{ matrix.container }} | |
| options: ${{ matrix.container_options }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: ${{ matrix.deps_install }} | |
| - name: Build zeugl | |
| run: | | |
| ./bootstrap.sh | |
| ./configure --enable-debug | |
| make | |
| - name: Test immutable operations | |
| run: | | |
| chmod +x tests/test_immutable.sh | |
| tests/test_immutable.sh |