fix: testss #209
Workflow file for this run
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
name: Build and Release | |
on: | |
push: | |
branches: | |
- ft-binary | |
jobs: | |
# test-examples: | |
# if: ${{ !inputs.skip_tests }} | |
# uses: ./.github/workflows/examples.yml | |
# with: | |
# working-directory: ./python | |
# secrets: inherit | |
publish-core: | |
name: Create Framework & Plugin Releases | |
# needs: test-examples | |
defaults: | |
run: | |
working-directory: ./python | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.10"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Build | |
run: | | |
sudo apt-get update --fix-missing | |
sudo apt-get autoremove | |
sudo apt-get autoclean | |
python -m pip install --upgrade pip | |
pip install twine build | |
# Build dist | |
python -m build | |
publish-cli: | |
name: Build and upload CLI | |
needs: publish-core | |
permissions: write-all | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-12, macos-14, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Build for ${{ matrix.os }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyinstaller | |
cd python/ | |
pip3 install . | |
# Build CLI | |
pyinstaller --onefile composio/cli/__main__.py | |
# Mac ARM Release | |
- if: matrix.os == 'macos-14' | |
run: | | |
cd python/ | |
zip -r composio-darwin-arm64.zip dist/* | |
rm -rf dist/ | |
- if: matrix.os == 'macos-14' | |
name: Upload artifact to GitHub | |
uses: actions/upload-artifact@v2 | |
with: | |
name: composio-darwin-arm64 | |
path: python/composio-darwin-arm64.zip | |