From 13e84078848cbef5ea72e4e1c71e7afc38fe260b Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Sat, 4 Dec 2021 15:02:10 -0500 Subject: [PATCH] chore: Adjust memory path --- .github/workflows/main.yaml | 4 ++-- runtime/tests/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 7b525ae..842bdf6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -101,7 +101,7 @@ jobs: uses: actions/cache@v2 with: path: ./runtime/bin/gocr_wasm.so - key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/Makefile', './runtime/tests/gocr/**', './runtime/compiletime/**', './runtime/compiletime/memory/**') }} + key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/Makefile', './runtime/tests/gocr/**', './runtime/compiletime/**') }} if: success() || failure() - name: Hyde run: | @@ -138,7 +138,7 @@ jobs: uses: actions/cache@v2 with: path: ./runtime/bin/ekf_wasm.so - key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/Makefile', './runtime/tests/TinyEKF/**', './runtime/compiletime/**', './runtime/compiletime/memory/**') }} + key: ${{ runner.os }}-gocr2-${{ hashFiles('./runtime/tests/Makefile', './runtime/tests/TinyEKF/**', './runtime/compiletime/**') }} if: success() || failure() - name: EKF one iteration run: | diff --git a/runtime/tests/Makefile b/runtime/tests/Makefile index 2723001..f4c71dc 100644 --- a/runtime/tests/Makefile +++ b/runtime/tests/Makefile @@ -7,7 +7,7 @@ OPTFLAGS=-O3 -flto SLEDGE_BASE_DIR=../../ SLEDGE_RT_DIR=${SLEDGE_BASE_DIR}/runtime/ SLEDGE_COMPILETIME_INC=${SLEDGE_RT_DIR}/include -SLEDGE_COMPILETIME_SRC=${SLEDGE_RT_DIR}/compiletime/instr.c ${SLEDGE_RT_DIR}/compiletime/memory/64bit_nix.c +SLEDGE_COMPILETIME_SRC=${SLEDGE_RT_DIR}/compiletime/*.c ALL=fibonacci empty ekf cifar10 gocr lpd resize ALL_COPY_DEST=$(ALL:%=../../runtime/bin/%_wasm.so)