-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
290e106
commit d276165
Showing
4 changed files
with
92 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Push to PyPI | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
pull_request: | ||
branches: ["main"] | ||
|
||
jobs: | ||
pypi-publish: | ||
name: Upload release to PyPI | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: release | ||
url: https://pypi.org/p/datago | ||
permissions: | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install linux deps | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install libvips-dev libjpeg-turbo8-dev | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.23" | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.11.10" | ||
|
||
- name: Install pybindgen | ||
run: | | ||
python3 -m pip install pybindgen | ||
go install golang.org/x/tools/cmd/goimports@latest | ||
go install github.com/go-python/gopy@latest | ||
- name: Get next version | ||
uses: reecetech/[email protected] | ||
id: version | ||
with: | ||
scheme: calver | ||
increment: patch | ||
|
||
- name: Build python module | ||
run: | | ||
cd pkg | ||
gopy pkg -author="Photoroom" -email="[email protected]" -name="datago" -version="${{ steps.version.outputs.version }}" . | ||
export DESTINATION="../build" | ||
mkdir -p $DESTINATION/datago | ||
mv datago/* $DESTINATION/datago/. | ||
mv setup.py $DESTINATION/. | ||
mv Makefile $DESTINATION/. | ||
mv README.md $DESTINATION/. | ||
rm LICENSE MANIFEST.in | ||
ls | ||
cd ../build | ||
- name: Install python module | ||
run: | | ||
ls | ||
cd build | ||
python3 -m pip install --user -v -e . | ||
- name: Run the python unit tests | ||
env: | ||
DATAROOM_API_KEY: ${{ secrets.DATAROOM_API_KEY }} | ||
DATAROOM_TEST_SOURCE: ${{ secrets.DATAROOM_TEST_SOURCE }} | ||
DATAROOM_API_URL: ${{ secrets.DATAROOM_API_URL }} | ||
run: | | ||
ls | ||
python3 -m pip install -r requirements.txt | ||
pytest -xv python/tests/* | ||
- name: Build the package | ||
run: | | ||
cd build | ||
python3 setup.py sdist | ||
mv dist ../. | ||
cd .. | ||
ls | ||
- name: Publish package distributions to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ rm -rf $DESTINATION | |
|
||
# Build the python package via the gopy toolchain | ||
cd pkg | ||
gopy pkg -author="Photoroom" -email="[email protected]" -url="" -name="datago" -version="0.3" . | ||
gopy pkg -author="Photoroom" -email="[email protected]" -url="" -name="datago" -version="0.0.1". | ||
mkdir -p $DESTINATION/datago | ||
mv datago/* $DESTINATION/datago/. | ||
mv setup.py $DESTINATION/. | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "datago" | ||
version = "0.0.1" | ||
version = "0.6" | ||
authors = [ | ||
{ name="Photoroom", email="[email protected]" }, | ||
] | ||
|