We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb4514 commit 9388e6bCopy full SHA for 9388e6b
.github/workflows/codechecker.yaml
@@ -70,11 +70,18 @@ jobs:
70
- name: "Install deps"
71
run: sudo apt install -y gcc-13 g++-13 cmake gperf zlib1g-dev ninja-build erlang libmbedtls-dev cppcheck valgrind
72
73
+ - name: "Install rebar3"
74
+ run:
75
+ wget --no-verbose https://github.com/erlang/rebar3/releases/download/3.18.0/rebar3
76
+ chmod +x rebar3
77
+ ./rebar3 local install
78
+
79
- name: "Checkout repository"
80
uses: actions/checkout@v4
81
82
- name: "Prepare Build"
83
run: |
84
+ export PATH=${PATH}:${HOME}/.cache/rebar3/bin
85
mkdir build
86
cd build
87
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=OFF
.github/workflows/esp32-simtest.yaml
0 commit comments