Skip to content

Commit 8f9b033

Browse files
author
chrisdoman
authored
Merge pull request #17 from jarp0l/arm64-macos-binary
Arm64 macos binary
2 parents 57fe68a + 00acd58 commit 8f9b033

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/app-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
chmod +x ./release/generate_linux_binary.sh
5353
./release/generate_linux_binary.sh
5454
chmod +x ./dist/cloudgrep
55-
./dist/cloudgrep # check it doesn't return non 0 exit status, i.e. crash
55+
./dist/cloudgrep -h # check it doesn't return non 0 exit status, i.e. crash
5656
- uses: actions/upload-artifact@v3
5757
with:
5858
name: dist-linux
@@ -98,8 +98,8 @@ jobs:
9898
chmod +x ./release/generate_linux_binary.sh
9999
./release/generate_linux_binary.sh
100100
chmod +x ./dist/cloudgrep
101-
./dist/cloudgrep # check it doesn't return non 0 exit status, i.e. crash
101+
./dist/cloudgrep -h # check it doesn't return non 0 exit status, i.e. crash
102102
- uses: actions/upload-artifact@v3
103103
with:
104104
name: dist-osx
105-
path: ./dist/*
105+
path: ./dist/*

cloudgrep/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .cloudgrep import CloudGrep
1+
from cloudgrep.cloudgrep import CloudGrep
22
import argparse
33
import logging
44
import sys

release/generate_linux_binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
pwd
33
ls
44
pip3 install -r requirements.txt
5-
pyinstaller --onefile --clean ./cloudgrep/cloudgrep.py
5+
pyinstaller --onefile --name cloudgrep --clean ./cloudgrep/__main__.py

0 commit comments

Comments
 (0)