chkbit-py/.github/workflows/build.yml

93 lines
2.4 KiB
YAML
Raw Permalink Normal View History

2024-01-13 17:38:24 +00:00
name: build
2024-01-12 21:33:59 +00:00
on: [push]
jobs:
build:
2024-01-13 16:07:34 +00:00
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
2024-01-12 21:33:59 +00:00
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
2024-01-13 17:38:24 +00:00
2024-01-12 21:33:59 +00:00
- name: prep
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install pipenv pyinstaller==6.3.0
pipenv install
rm -rf build dist
2024-01-13 17:38:24 +00:00
2024-01-12 21:33:59 +00:00
- name: build
shell: bash
run: |
2024-01-13 16:07:34 +00:00
echo "RUNNER_OS: $RUNNER_OS"
# get path to venv site-packages (for blake3)
pipenv run python -c "import site; print(site.getsitepackages())"
SITEPKG=$(pipenv run python -c "import site; print(site.getsitepackages()[-1])")
pipenv run pyinstaller run.py --hidden-import chkbit --hidden-import chkbit_cli --onefile --name chkbit --console --paths $SITEPKG
2024-01-12 21:33:59 +00:00
cat build/chkbit/warn-chkbit.txt
2024-01-13 16:07:34 +00:00
cd dist; ls -l
2024-01-13 17:38:24 +00:00
if [ "$RUNNER_OS" == "Linux" ]; then
tar -czf chkbit-linux_amd64.tar.gz chkbit
elif [ "$RUNNER_OS" == "macOS" ]; then
tar -czf chkbit-macos_amd64.tar.gz chkbit
elif [ "$RUNNER_OS" == "Windows" ]; then
7z a -tzip chkbit-windows_amd64.zip chkbit.exe
2024-01-13 16:07:34 +00:00
else
2024-01-13 17:38:24 +00:00
echo 'unknown runner'
exit 1
2024-01-13 16:07:34 +00:00
fi
2024-01-13 17:38:24 +00:00
2024-01-13 16:07:34 +00:00
- name: artifact
2024-01-13 17:38:24 +00:00
uses: actions/upload-artifact@v4
2024-01-13 16:07:34 +00:00
if: runner.os == 'Linux'
with:
2024-01-13 17:38:24 +00:00
name: binary-${{ matrix.os }}
path: dist/chkbit*.tar.gz
2024-01-12 21:33:59 +00:00
- name: artifact
2024-01-13 17:38:24 +00:00
uses: actions/upload-artifact@v4
2024-01-13 16:07:34 +00:00
if: runner.os == 'macOS'
2024-01-12 21:33:59 +00:00
with:
2024-01-13 17:38:24 +00:00
name: binary-${{ matrix.os }}
path: dist/chkbit*.tar.gz
2024-01-13 16:07:34 +00:00
- name: artifact
2024-01-13 17:38:24 +00:00
uses: actions/upload-artifact@v4
2024-01-13 16:07:34 +00:00
if: runner.os == 'Windows'
with:
2024-01-13 17:38:24 +00:00
name: binary-${{ matrix.os }}
path: dist/chkbit*.zip
2024-01-13 16:07:34 +00:00
2024-01-13 17:38:24 +00:00
publish:
runs-on: ubuntu-latest
needs: build
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
steps:
- name: get-artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: list
shell: bash
run: |
find
ls -l dist
- name: publish-release
uses: softprops/action-gh-release@v1
with:
draft: true
files: dist/*
2024-01-13 16:07:34 +00:00