Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rask24 committed Feb 14, 2024
1 parent b951174 commit 4d5588e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Run Norminette
run: make norm
build:
name: Build + Check allowed functions
name: build + check allowed functions
runs-on: macos-12
steps:
- name: Checkout repository
Expand All @@ -30,10 +30,6 @@ jobs:
run: make bonus
- name: Build push_swap
run: make
- name: check
run: nm -u push_swap
- name: check2
run: nm -u checker
- name: check allowed_functions
run: test/check_allowed_functions.sh
unit_test:
Expand Down
2 changes: 1 addition & 1 deletion test/check_allowed_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ check_binary_symbols() {
done
}

allowed_functions=("read" "write" "malloc" "free" "exit" "error")
allowed_functions=("read" "write" "malloc" "free" "exit" "error" "dyld_stub_binder")

# Check symbols for push_swap
check_binary_symbols "push_swap"
Expand Down

0 comments on commit 4d5588e

Please sign in to comment.