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