-
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.
Merge pull request #37 from Photoroom/actions-upgrade
chore(ci): upgrade go & python setup actions and be explicit about pygo VM
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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 |
---|---|---|
|
@@ -22,12 +22,12 @@ jobs: | |
sudo apt-get -y install libvips-dev libjpeg-turbo8-dev | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.23" | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11.10" | ||
|
||
|
@@ -47,7 +47,7 @@ jobs: | |
- name: Build python module | ||
run: | | ||
cd pkg | ||
GOAMD64=v3 gopy pkg -author="Photoroom" -email="[email protected]" -name="datago" -version="${{ steps.version.outputs.major-version }}.${{ steps.version.outputs.minor-version }}.${{ steps.version.outputs.patch-version }}" . | ||
GOAMD64=v3 gopy pkg -author="Photoroom" -email="[email protected]" -name="datago" -vm="python3" -version="${{ steps.version.outputs.major-version }}.${{ steps.version.outputs.minor-version }}.${{ steps.version.outputs.patch-version }}" . | ||
export DESTINATION="../build" | ||
mkdir -p $DESTINATION/datago | ||
mv datago/* $DESTINATION/datago/. | ||
|
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 |
---|---|---|
|
@@ -21,12 +21,12 @@ jobs: | |
sudo apt-get -y install libvips-dev libjpeg-turbo8-dev | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.23" | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11.10" | ||
|
||
|
@@ -39,7 +39,7 @@ jobs: | |
- name: Build python module | ||
run: | | ||
cd pkg | ||
gopy pkg -author="Photoroom" -email="[email protected]" -name="datago" . | ||
gopy pkg -author="Photoroom" -email="[email protected]" -vm="python3" -name="datago" . | ||
export DESTINATION="../build" | ||
mkdir -p $DESTINATION/datago | ||
mv datago/* $DESTINATION/datago/. | ||
|