Testing with antiHashIndex being reset. #7828
This file contains 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: Build-and-Test-GCC-Ubuntu | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
build_type: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install the latest gcc compiler. | |
working-directory: Source | |
run: | | |
sudo apt-get install build-essential | |
sudo apt-get install g++-14 | |
- name: Install Seaborn | |
run: | | |
pip install seaborn | |
- name: Configure CMake | |
run: | | |
cmake -S . -B ./Build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_CXX_COMPILER=/usr/bin/g++-12 -DJSONIFIER_TEST="TRUE" | |
- name: Build the Test | |
run: | | |
cmake --build ./Build --config=${{matrix.build_type}} -v | |
- name: Install the Test | |
run: | | |
sudo cmake --install ./Build --config=${{matrix.build_type}} | |
- name: Run the Test | |
working-directory: ./Build/Source | |
run: | | |
./Json-Performance | |
continue-on-error: true |