Skip to content

Commit

Permalink
[github] build on intel mac too
Browse files Browse the repository at this point in the history
Summary: people still have those, right?

Differential Revision: D58822475

fbshipit-source-id: 7340437e30af25d2c3a77a82039de5bf2b4834e6
  • Loading branch information
jvillard authored and facebook-github-bot committed Jun 20, 2024
1 parent 7161fdd commit b74d4fd
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -54,6 +54,7 @@ jobs:
matrix:
os:
- macOS-latest
- macOS-13
- ubuntu-latest
ocaml-compiler:
- ocaml-variants.4.14.0+options,ocaml-option-flambda
4 changes: 2 additions & 2 deletions scripts/create_binary_release.sh
Original file line number Diff line number Diff line change
@@ -25,9 +25,9 @@ ROOT_DIR="$SCRIPT_DIR"/..
NCPUS="$(getconf _NPROCESSORS_ONLN 2>/dev/null || echo 2)"
PLATFORM=$(uname)
if [ "$PLATFORM" == 'Darwin' ]; then
RELEASE_NAME=infer-osx-"$VERSION"
RELEASE_NAME=infer-osx-$(uname -m)-"$VERSION"
else
RELEASE_NAME=infer-linux64-"$VERSION"
RELEASE_NAME=infer-linux-$(uname -m)-"$VERSION"
fi
RELEASE_TARBALL="$RELEASE_NAME".tar.xz

0 comments on commit b74d4fd

Please sign in to comment.