Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the formatting and workflows #22

Merged
merged 9 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/black.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Code Formatting

on: push

jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11.1

- name: Code Formatting (App)
run: |
pip install black
pip install -r requirements.txt
black --check .
203 changes: 106 additions & 97 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,114 +13,123 @@ jobs:
runs-on: macos-latest
env:
PYTHONVERSION: "3.11.1"
MACOSX_DEPLOYMENT_TARGET: "10.9"
MACOSX_DEPLOYMENT_TARGET: "13.6"
PYI_BUILD_MODE: "onedir"

steps:
- uses: actions/checkout@v2

- name: Cache Python download
id: cache-python-download
uses: actions/cache@v3
with:
path: ~/python.pkg
key: macOS-Python-${{ env.PYTHON_VERSION }}

- name: Get Python
run: |
curl https://www.python.org/ftp/python/${PYTHONVERSION}/python-${PYTHONVERSION}-macos11.pkg -o ~/python.pkg

- name: Install Python
run: sudo installer -pkg ~/python.pkg -target /

- name: Install Python dependencies and build
run: |
python3 --version
pip3 install --upgrade pip wheel
pip3 install -r requirements.txt
pip3 install pyinstaller
pyinstaller weather.spec

- name: Log files
run: |
ls dist
ls dist/Weather
mkdir Weather
mv ./dist/Weather.app ./Weather/Weather.app
ln -s /Applications ./Weather/Applications
hdiutil create -srcfolder ./Weather Weather.dmg

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: Weather.dmg
asset_name: Weather.dmg
tag: ${{ github.event.inputs.version }}
overwrite: true

- uses: actions/checkout@v2

- name: Uninstall homebrew
run: |
curl -sLO https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh
chmod +x ./uninstall.sh
sudo ./uninstall.sh --force
sudo rm -rf /usr/local/Homebrew
sudo rm -rf /usr/local/Caskroom
sudo rm -rf /usr/local/bin/brew

- name: Cache Python download
id: cache-python-download
uses: actions/cache@v3
with:
path: ~/python.pkg
key: macOS-Python-${{ env.PYTHON_VERSION }}

- name: Get Python
run: |
curl https://www.python.org/ftp/python/${PYTHONVERSION}/python-${PYTHONVERSION}-macos11.pkg -o ~/python.pkg

- name: Install Python
run: sudo installer -pkg ~/python.pkg -target /

- name: Install Python dependencies and build
run: |
python3 --version
pip3 install --upgrade pip wheel
pip3 install -r requirements.txt
pip3 install pyinstaller
pyinstaller weather.spec

- name: Log files
run: |
ls dist
ls dist/Weather
mkdir Weather
mv ./dist/Weather.app ./Weather/Weather.app
ln -s /Applications ./Weather/Applications
hdiutil create -srcfolder ./Weather Weather.dmg

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: Weather.dmg
asset_name: Weather.dmg
tag: ${{ github.event.inputs.version }}
overwrite: true

build-linux:
runs-on: ubuntu-latest
env:
PYI_BUILD_MODE: "onefile"

steps:
- uses: actions/checkout@v2

- name: Setup Python 3.11.1
uses: actions/setup-python@v4
with:
python-version: 3.11.1

- name: Install requirements
run: |
pip3 install pyinstaller
pip3 install -r requirements.txt
sudo apt install python3-tk python3-pil.imagetk

- name: Build
run: pyinstaller weather.spec
- name: Log files
run: |
ls dist

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/Weather
asset_name: Weather
tag: ${{ github.event.inputs.version }}
overwrite: true
- uses: actions/checkout@v2

- name: Setup Python 3.11.1
uses: actions/setup-python@v4
with:
python-version: 3.11.1

- name: Install requirements
run: |
pip3 install pyinstaller
pip3 install -r requirements.txt
sudo apt install python3-tk python3-pil.imagetk

- name: Build
run: pyinstaller weather.spec

- name: Log files
run: |
ls dist

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/Weather
asset_name: Weather
tag: ${{ github.event.inputs.version }}
overwrite: true

build-windows:
runs-on: windows-latest
env:
PYI_BUILD_MODE: "onefile"

steps:
- uses: actions/checkout@v2
- name: Setup Python 3.11.1
uses: actions/setup-python@v4
with:
python-version: 3.11.1

- name: Install Python dependencies and build
run: |
python3 --version
pip install --upgrade pip wheel
pip install -r requirements.txt
pip install pyinstaller
pyinstaller windows-weather.spec
- name: Log files
run: |
ls dist

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/Weather.exe
asset_name: Weather.exe
tag: ${{ github.event.inputs.version }}
overwrite: true
- uses: actions/checkout@v2

- name: Setup Python 3.11.1
uses: actions/setup-python@v4
with:
python-version: 3.11.1

- name: Install Python dependencies and build
run: |
python3 --version
pip install --upgrade pip wheel
pip install -r requirements.txt
pip install pyinstaller
pyinstaller windows-weather.spec

- name: Log files
run: |
ls dist

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/Weather.exe
asset_name: Weather.exe
tag: ${{ github.event.inputs.version }}
overwrite: true
Loading
Loading