We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b74e46 commit 49eccb3Copy full SHA for 49eccb3
.github/workflows/test-hashmap.yml
@@ -12,9 +12,5 @@ jobs:
12
13
steps:
14
- uses: actions/checkout@v4
15
- - name: install-valgrind
16
- run: sudo apt update && sudo apt install -y valgrind
17
- name: make
18
- run: make test_hashmap
19
- - name: test
20
- run: valgrind --leak-check=full --error-exitcode=1 ./test_hashmap
+ run: make
Makefile
@@ -18,4 +18,4 @@ $(TARGET): $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) -ftls-model=global-dynamic -mtls-dialect=$(TLS_DIALECT) -fPIC -shared -o $(TARGET) $(SRCS)
clean:
21
- rm -f $(TARGET) test_hashmap
+ rm -f $(TARGET)
0 commit comments