From 859389af346e56fcb9e8a798a6f6621d08649421 Mon Sep 17 00:00:00 2001 From: Satoshi Ikari Date: Sun, 21 Jul 2024 09:09:55 +0900 Subject: [PATCH] Fix data directory path in CI --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 13e4492ea..b607210a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -128,9 +128,9 @@ jobs: - name: run simulation(SampleSat) if: matrix.build_bit == 'BUILD_64BIT=OFF' || (matrix.build_bit == 'BUILD_64BIT=ON' && matrix.use_c2a == 'USE_C2A=OFF') - working-directory: ./data/sample + working-directory: ./ run: | - ..\..\Debug\S2E.exe + .\Debug\S2E.exe build_s2e_linux: name: Build on Linux @@ -149,8 +149,8 @@ jobs: run: | COMPILER="${{ matrix.compiler }}" read -r -a COMPILER <<< "$COMPILER" - # echo "CC=${COMPILER[0]}" >> "$GITHUB_OUTPUT" - # echo "CXX=${COMPILER[1]}" >> "$GITHUB_OUTPUT" + echo "CC=${COMPILER[0]}" >> "$GITHUB_OUTPUT" + echo "CXX=${COMPILER[1]}" >> "$GITHUB_OUTPUT" - name: install deps run: | @@ -217,16 +217,16 @@ jobs: find . -type f -name '*.ini' -exec sed -i 's/..\/..\/..\/ExtLibraries/..\/..\/ExtLibraries/g' {} \; - name: run simulation(SampleSat) - working-directory: ./data/sample + working-directory: ./ run: | - ../../S2E + S2E - name: generate graph working-directory: ./scripts/Plot run: | sudo apt-get install -y gnuplot pip3 install yq - LOG=$(ls ../../data/sample/logs/logs_*/*.csv) + LOG=$(ls ../../logs/logs_*/*.csv) echo "plot $LOG" ./gen_graph.sh "${LOG}" ls