Skip to content

Commit 49eccb3

Browse files
committed
remove some stray stuff
1 parent 2b74e46 commit 49eccb3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/test-hashmap.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,5 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15-
- name: install-valgrind
16-
run: sudo apt update && sudo apt install -y valgrind
1715
- name: make
18-
run: make test_hashmap
19-
- name: test
20-
run: valgrind --leak-check=full --error-exitcode=1 ./test_hashmap
16+
run: make

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ $(TARGET): $(SRCS) $(HEADERS)
1818
$(CXX) $(CXXFLAGS) -ftls-model=global-dynamic -mtls-dialect=$(TLS_DIALECT) -fPIC -shared -o $(TARGET) $(SRCS)
1919

2020
clean:
21-
rm -f $(TARGET) test_hashmap
21+
rm -f $(TARGET)

0 commit comments

Comments
 (0)