-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update python and open-aea-ledger dependencies
- Loading branch information
1 parent
0a0af25
commit 1450054
Showing
7 changed files
with
341 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Binary Tests | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
compile: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- uses: snok/install-poetry@v1 | ||
with: | ||
version: "1.7.1" | ||
virtualenvs-create: true | ||
virtualenvs-in-project: false | ||
virtualenvs-path: ~/my-custom-path | ||
installer-parallel: true | ||
- name: Install dependencies | ||
run: poetry install --no-root | ||
- name: Permission prebuilt bins for darwin ARM64 | ||
run: | | ||
chmod +x bins/darwin/arm64/aea_bin | ||
chmod +x bins/darwin/arm64/tendermint | ||
- name: Create Pearl ARM64 | ||
run: pyinstaller pearl_arm64.spec | ||
- name: Permission the pearl_arm64 binary | ||
run: chmod +x dist/pearl_arm64 | ||
- name: Test Pearl ARM64 runs | ||
run: ./dist/pearl_arm64 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters