Skip to content

drop BatchLog comparison, ignore input filenames in comparisons #72

drop BatchLog comparison, ignore input filenames in comparisons

drop BatchLog comparison, ignore input filenames in comparisons #72

Workflow file for this run

name: check
on: push
jobs:
check:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
include:
- os: windows-latest
path_to_exe: ./build/Debug/RangeShifter.exe
- os: ubuntu-latest
path_to_exe: ./build/RangeShifter
- os: macos-latest
path_to_exe: ./build/RangeShifter
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: build
run: |
mkdir build
cd build
cmake ../
cmake --build .
- name: run
run: ${{ matrix.path_to_exe }} run_on_gha/rs_test_project/
- name: check_output
run: |
cd ./run_on_gha/rs_test_project
rm Outputs/DebugLog.txt
bash check_output.bash
# DebugLog contains addresses, changes every run