Fixed issues highlighted by cppcheck/ASAN [docker_verify] #531
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: Opensuse | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| # This is what will cancel the workflow | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, '[skip_build]')" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build ffead-cpp on opensuse | |
| run: | | |
| cd docker/os-based | |
| docker build -f DockerFile-OpenSuse-x64-ffead-cpp . | |
| docker build -f DockerFile-OpenSuse-x64-ffead-cpp_autoconf . |