Skip to content

Merge pull request #39 from QAInsights/fix/gh-actions #28

Merge pull request #39 from QAInsights/fix/gh-actions

Merge pull request #39 from QAInsights/fix/gh-actions #28

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Hamster
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.11
uses: actions/setup-python@v3
with:
python-version: "3.10.11"
- name: List current directory
run: |
ls -la
uname -a
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install py2app
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Generate app for x86_64 architecture
# run: |
# arch -x86_64 python setup.py py2app --arch x86_64
# mv dist dist-x86_64
- name: Generate app for arm64 architecture
run: |
python setup.py py2app
mv dist dist-arm64
# - name: Upload x86_64 app
# uses: actions/upload-artifact@v2
# with:
# name: dist-x86_64
# path: dist-x86_64
- name: List current directory
run: |
ls -la
uname -a
ls -la dist-arm64
- name: Change mode of dist-arm64
run: |
chmod +x dist-arm64/Hamster.app/Contents/MacOS/Hamster
chmod +x dist-arm64/Hamster.app/Contents/MacOS/python
ls -la dist-arm64/Hamster.app/Contents/MacOS/
- name: Upload arm64 app
uses: actions/upload-artifact@v2
with:
name: dist-arm64
path: dist-arm64
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# body: |
# Release ${{ github.ref }}
# draft: false
# prerelease: false
# - name: Upload Release Asset
# id: upload-release-asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: dist/
# asset_name: dist
# asset_content_type: application/zip
# path: dist