From 81d7c707b0c9cacf51a2dd51a34f9b220b0ef3aa Mon Sep 17 00:00:00 2001 From: badaix Date: Sun, 6 Sep 2020 22:24:54 +0200 Subject: [PATCH] Clean up build dir on self-hosted --- .github/workflows/self-hosted.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/self-hosted.yml b/.github/workflows/self-hosted.yml index bc5a9ecb..ec213642 100644 --- a/.github/workflows/self-hosted.yml +++ b/.github/workflows/self-hosted.yml @@ -8,9 +8,9 @@ jobs: runs-on: self-hosted-rpi3 steps: - - uses: actions/checkout@v2 - name: clean-up run: rm -rf /home/pi/actions-runner/_work/snapcast + - uses: actions/checkout@v2 - name: cmake build run: mkdir build && cd build && cmake -DBOOST_ROOT=/home/pi/Develop/boost_1_73_0 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="$CXXFLAGS -Wall -Wextra -pedantic -Wno-unused-function" .. && cd .. - name: cmake make