A discord server..... yeahhhh #597
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
build: | |
name: Build app | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python-version: [ '3.8', '3.9', '3.10' ] | |
steps: | |
# Make sure cancels CI when tags is released | |
- name: Cancel previous runs | |
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'mansuf/mangadex-downloader' | |
uses: styfle/cancel-workflow-action@0.9.1 | |
with: | |
access_token: ${{ github.token }} | |
all_but_latest: true | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Setup python (x86) | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x86 | |
- name: Setup python (x64) | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: Install required libraries | |
run: | | |
py -${{ matrix.python-version }}-64 -m pip install -U pip | |
py -${{ matrix.python-version }}-64 -m pip install -U wheel pyinstaller setuptools tox | |
# For building lxml | |
py -${{ matrix.python-version }}-64 -m pip install -U cython | |
py -${{ matrix.python-version }}-64 -m pip install -U -r requirements.txt | |
py -${{ matrix.python-version }}-64 -m pip install -U -r requirements-optional.txt | |
py -${{ matrix.python-version }}-32 -m pip install -U pip | |
py -${{ matrix.python-version }}-32 -m pip install -U wheel pyinstaller setuptools tox | |
# For building lxml | |
py -${{ matrix.python-version }}-32 -m pip install -U cython | |
py -${{ matrix.python-version }}-32 -m pip install -U -r requirements.txt | |
py -${{ matrix.python-version }}-32 -m pip install -U -r requirements-optional.txt | |
- name: Test imports (x64) | |
run: | | |
# Setup for venv python x64 | |
echo "Creating virtual environment" | |
py -${{ matrix.python-version }}-64 -m venv test_imports_x64 | |
# Install mangadex-downloader | |
echo "Installing mangadex-downloader" | |
& ".\test_imports_x64\Scripts\python.exe" setup.py build | |
Move-Item -Path ".\build\lib\mangadex_downloader" -Destination ".\test_imports_x64" | |
# Preparing | |
$venvbindir_x64 = ".\Scripts" | |
$pythonvenv_x64 = "${venvbindir_x64}\python.exe" | |
$pipvenv_x64 = "${venvbindir_x64}\pip.exe" | |
Copy-Item -Path ".\requirements-optional.txt" -Destination ".\test_imports_x64" | |
Copy-Item -Path ".\requirements.txt" -Destination ".\test_imports_x64" | |
cd "test_imports_x64" | |
# Install required libraries in venv x64 | |
echo "Installing required libraries" | |
& "${pipvenv_x64}" install -U wheel | |
& "${pipvenv_x64}" install -U -r requirements-optional.txt | |
& "${pipvenv_x64}" install -U -r requirements.txt | |
# Execute test imports | |
echo "Executing test imports" | |
& "${pythonvenv_x64}" -m mangadex_downloader --version | |
- name: Test imports (x86) | |
run: | | |
# Setup for venv python x86 | |
echo "Creating virtual environment" | |
py -${{ matrix.python-version }}-32 -m venv test_imports_x86 | |
# Install mangadex-downloader | |
echo "Installing mangadex-downloader" | |
& ".\test_imports_x86\Scripts\python.exe" setup.py build | |
Move-Item -Path ".\build\lib\mangadex_downloader" -Destination ".\test_imports_x86" | |
# Preparing | |
$venvbindir_x86 = ".\Scripts" | |
$pythonvenv_x86 = "${venvbindir_x86}\python.exe" | |
$pipvenv_x86 = "${venvbindir_x86}\pip.exe" | |
Copy-Item -Path ".\requirements-optional.txt" -Destination ".\test_imports_x86" | |
Copy-Item -Path ".\requirements.txt" -Destination ".\test_imports_x86" | |
cd "test_imports_x86" | |
# Install required libraries in venv x86 | |
echo "Installing required libraries" | |
& "${pipvenv_x86}" install -U wheel | |
& "${pipvenv_x86}" install -U -r requirements-optional.txt | |
& "${pipvenv_x86}" install -U -r requirements.txt | |
# Execute test imports | |
echo "Executing test imports" | |
& "${pythonvenv_x86}" -m mangadex_downloader --version | |
- name: Get python version | |
run: | | |
$PythonVersion = (python --version) | |
echo "python_version=${PythonVersion}" | Out-File -FilePath $env:GITHUB_ENV -Append | |
# Build mangadex-downloader with PyInstaller | |
# only allow python 3.10 | |
- name: Compile script | |
if: ${{ contains(env.python_version, '3.10') }} | |
run: | | |
py -${{ matrix.python-version }}-64 -m PyInstaller "mangadex-dl_x64.spec" --distpath "./dist_x64" | |
py -${{ matrix.python-version }}-32 -m PyInstaller "mangadex-dl_x86.spec" --distpath "./dist_x86" | |
- name: Run compiled script | |
if: ${{ contains(env.python_version, '3.10') }} | |
run: | | |
& ".\dist_x64\mangadex-dl_x64\mangadex-dl_x64.exe" --version | |
& ".\dist_x86\mangadex-dl_x86\mangadex-dl_x86.exe" --version | |
- name: Cleanup build | |
if: contains(env.python_version, '3.10') | |
run: | | |
# x86 executable | |
copy "LICENSE" "dist_x86\mangadex-dl_x86" | |
copy "README.md" "dist_x86\mangadex-dl_x86" | |
copy "docs\changelog.md" "dist_x86\mangadex-dl_x86" | |
echo "${{ github.ref_name }}" | Out-File -FilePath "dist_x86\mangadex-dl_x86\version.txt" -NoNewLine | |
echo "mangadex-dl.exe --update" | Out-File -FilePath "dist_x86\mangadex-dl_x86\update.bat" | |
echo "start cmd" | Out-File -FilePath "dist_x86\mangadex-dl_x86\start cmd.bat" | |
Rename-Item -Path "dist_x86\mangadex-dl_x86\mangadex-dl_x86.exe" -NewName "mangadex-dl.exe" | |
Rename-Item -Path "dist_x86\mangadex-dl_x86" -NewName "mangadex-dl" | |
Compress-Archive -Path "dist_x86\mangadex-dl" -DestinationPath "mangadex-dl_x86_${{ github.ref_name }}.zip" | |
# x64 executable | |
copy "LICENSE" "dist_x64\mangadex-dl_x64" | |
copy "README.md" "dist_x64\mangadex-dl_x64" | |
copy "docs\changelog.md" "dist_x64\mangadex-dl_x64" | |
echo "${{ github.ref_name }}" | Out-File -FilePath "dist_x64\mangadex-dl_x64\version.txt" -NoNewLine | |
echo "mangadex-dl.exe --update" | Out-File -FilePath "dist_x64\mangadex-dl_x64\update.bat" | |
echo "start cmd" | Out-File -FilePath "dist_x64\mangadex-dl_x64\start cmd.bat" | |
Rename-Item -Path "dist_x64\mangadex-dl_x64\mangadex-dl_x64.exe" -NewName "mangadex-dl.exe" | |
Rename-Item -Path "dist_x64\mangadex-dl_x64" -NewName "mangadex-dl" | |
Compress-Archive -Path "dist_x64\mangadex-dl" -DestinationPath "mangadex-dl_x64_${{ github.ref_name }}.zip" | |
- name: Upload artifact (x64) | |
if: contains(env.python_version, '3.10') | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mangadex-dl_x64 | |
path: dist_x64/mangadex-dl/ | |
- name: Upload artifact (x86) | |
if: contains(env.python_version, '3.10') | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mangadex-dl_x86 | |
path: dist_x86/mangadex-dl/ | |
- name: Get File hash | |
if: contains(env.python_version, '3.10') | |
run: | | |
$File_x86 = "mangadex-dl_x86_${{ github.ref_name }}.zip" | |
$File_x64 = "mangadex-dl_x64_${{ github.ref_name }}.zip" | |
$Hash_x86 = (Get-FileHash -Algorithm SHA256 ${File_x86}).Hash.ToLower() | |
$Hash_x64 = (Get-FileHash -Algorithm SHA256 ${File_x64}).Hash.ToLower() | |
echo "mangadex_dl_x64_hash=${Hash_x64}" | Out-File -FilePath $env:GITHUB_ENV -Append | |
echo "mangadex_dl_x86_hash=${Hash_x86}" | Out-File -FilePath $env:GITHUB_ENV -Append | |
echo "${File_x64} Hash = ${Hash_x64}" | |
echo "${File_x86} Hash = ${Hash_x86}" | |
- name: Create Release | |
if: startsWith(github.ref, 'refs/tags/') && contains(env.python_version, '3.10') && github.repository == 'mansuf/mangadex-downloader' | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ env.GIRHUB_REF_NAME }} | |
name: mangadex-downloader ${{ github.ref_name }} | |
body: | | |
------ | |
## Files hash | |
| Name | SHA-256 | | |
| ---- | ------- | | |
| mangadex-dl_x64_${{ github.ref_name }}.zip | ${{ env.mangadex_dl_x64_hash }} | | |
| mangadex-dl_x86_${{ github.ref_name }}.zip | ${{ env.mangadex_dl_x86_hash }} | | |
These binaries are for Windows only. | |
files: | | |
mangadex-dl_x64_${{ github.ref_name }}.zip | |
mangadex-dl_x86_${{ github.ref_name }}.zip | |
draft: true | |
prerelease: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |