Skip to content

Commit 3bd64ef

Browse files
Ro6afFalehander92
authored andcommitted
feat(mac build): add macFUSE in install_tup
1 parent 9257460 commit 3bd64ef

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/codetracer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ jobs:
203203
run: ./non-nix-build/build.sh
204204

205205
- name: Install AWS CLI
206+
if: startsWith(github.ref, 'refs/tags/')
206207
run: brew install awscli
207208

208209
- name: Upload artifact
@@ -244,6 +245,7 @@ jobs:
244245
- dev-build
245246
- nix-build
246247
- appimage-build
248+
- dmg-build
247249
steps:
248250
- name: Checkout
249251
uses: actions/checkout@v4

non-nix-build/install_tup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
WANTED_TUP_REVISION=4247a523
66
WANTED_TUP_VERSION=v0.8-8
7-
7+
88
if command -v tup &> /dev/null; then
99
TUP_VERSION=$(tup --version)
1010
if [ "$TUP_VERSION" == "tup $WANTED_TUP_VERSION-g$WANTED_TUP_REVISION" ]; then
@@ -17,7 +17,7 @@ else
1717
echo tup is missing! installing...
1818
fi
1919

20-
brew install pkg-config pcre2
20+
brew install pkg-config pcre2 macFUSE
2121
: ${DEPS_DIR:=$PWD/deps}
2222
cd "$DEPS_DIR"
2323
rm -rf tup

0 commit comments

Comments
 (0)