Skip to content

Commit

Permalink
Merge branch 'fix_win_ci_segfault' of github.com:pthom/FunctionalPlus…
Browse files Browse the repository at this point in the history
… into fix_win_ci_segfault
  • Loading branch information
pthom committed Jun 12, 2024
2 parents 14fd722 + 4e84b0d commit 9795d1d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "/host_usr_local/bin" >> $GITHUB_PATH
script/ci_setup_linux.sh
- name: Build and Test
run: script/ci_run.sh run_tests
run: script/ci.sh run_tests


build_clang:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
fi
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
- name: Build and Test
run: script/ci_run.sh run_tests
run: script/ci.sh run_tests


build_osx:
Expand All @@ -73,7 +73,7 @@ jobs:
steps:
- uses: actions/checkout@main
- name: Build and Test
run: script/ci_run.sh run_tests
run: script/ci.sh run_tests


build_windows_msvc:
Expand All @@ -89,7 +89,7 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1
- name: Build and Test
shell: bash
run: script/ci_run.sh run_tests
run: script/ci.sh run_tests


formatting-check:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
queries: +security-and-quality
- name: Build
shell: bash
run: script/ci_run.sh run_build
run: script/ci.sh run_build
- name: CodeQL Analysis
uses: github/codeql-action/analyze@v3
4 changes: 4 additions & 0 deletions script/ci_run.sh → script/ci.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/bash

# Central script called by the CI
# Usage:
# ci.sh {run_build|run_tests}

#
# Private Impl
#
Expand Down

0 comments on commit 9795d1d

Please sign in to comment.