Skip to content

Commit

Permalink
Add self-hosted
Browse files Browse the repository at this point in the history
  • Loading branch information
antares-sw committed Jan 8, 2024
1 parent 1f32bfd commit 554c6f0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 151 deletions.
151 changes: 0 additions & 151 deletions .circleci/config.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ jobs:
cp ${BUILD_FILE_NAME}.tar.gz /tmp/artifacts;
sha256sum ${BUILD_FILE_NAME}.tar.gz | head -c 64 > /tmp/artifacts/${BUILD_FILE_NAME}.sha256;
- OS: self-hosted
PYTHON_VERSION: 3.10.13
BUILD_CMD: |
export PYTHONHASHSEED=42
export BUILD_FILE_NAME=operator-${RELEASE_VERSION}-linux-arm64;
mkdir ${BUILD_FILE_NAME};
git rev-parse --short HEAD > GIT_SHA
poetry run pyinstaller \
--distpath ./${BUILD_FILE_NAME} \
./operator.spec;
tar -zcvf ${BUILD_FILE_NAME}.tar.gz ${BUILD_FILE_NAME};
mkdir /tmp/artifacts;
cp ${BUILD_FILE_NAME}.tar.gz /tmp/artifacts;
sha256sum ${BUILD_FILE_NAME}.tar.gz | head -c 64 > /tmp/artifacts/${BUILD_FILE_NAME}.sha256;
- OS: macos-11
PYTHON_VERSION: 3.10.13
BUILD_CMD: |
Expand Down

0 comments on commit 554c6f0

Please sign in to comment.