diff --git a/.github/workflows/complib-package.yml b/.github/workflows/complib-package.yml new file mode 100644 index 0000000..6e9ee94 --- /dev/null +++ b/.github/workflows/complib-package.yml @@ -0,0 +1,60 @@ +name: Build comlib.deb package + +on: + push: + branches: + - master + +jobs: + build-complib-deb: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Bump version number + uses: paulhatch/semantic-version@v4.0.2 + id: next_semantic_version + with: + branch: "build-test" + tag_prefix: "" + major_pattern: "(MAJOR)" + minor_pattern: "(MINOR)" + format: "${major}.${minor}.${patch}-${increment}" + bump_each_commit: true + - name: Print Version Numbers + run: | + echo ${{join(steps.next_semantic_version.outputs.*, ' - ')}} + echo "Next version: ${{steps.next_semantic_version.outputs.version}}" + echo "Next version tag: ${{steps.next_semantic_version.outputs.version_tag}}" + - name: Tag Commit + uses: actions/github-script@v5 + with: + script: | + github.rest.git.createRef({ + owner: context.repo.owner, + repo: context.repo.repo, + ref: 'refs/tags/${{steps.next_semantic_version.outputs.version}}', + sha: context.sha + }) + - name: Install fpm + run: sudo apt install ruby -y && sudo gem install fpm + - name: Build complib deb Package + env: + VERSION: ${{steps.next_semantic_version.outputs.version}} + run: bash ./build.sh # creates packages in "output" directory + - name: Pushes to another repository + uses: cpina/github-action-push-to-another-repository@main + env: + API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} + with: + source-directory: 'output' + target-directory: 'debs/complib/' + destination-github-username: 'F-WuTS' + destination-repository-name: 'compREP' + user-email: joel.klimont@comp-air.at + target-branch: master diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..84ba6e3 --- /dev/null +++ b/build.sh @@ -0,0 +1,10 @@ +#!/usr/bin/bash + +mkdir output + +DEB="empty" + +cd client_s2 +source build_deb.sh +echo "Ran build deb, created: $DEB" +mv $DEB ../output diff --git a/client_s2/build_deb.sh b/client_s2/build_deb.sh index 8b31294..fdf6549 100755 --- a/client_s2/build_deb.sh +++ b/client_s2/build_deb.sh @@ -1,6 +1,15 @@ -##!/usr/bin/zsh +#!/usr/bin/bash + export PYTHONDONTWRITEBYTECODE=1 -export VERSION="1.0.0-2" + +# set to 1 for debugging +export EXTRACT_PKG="0" + +if [[ -z $VERSION ]]; then + echo "Warning, setting VERSION env var to default value v1.0.0-1" + export VERSION="v1.0.0-0" +fi +echo "Building Package version: $VERSION" # BE CAREFUL TO NOT BUILD IN A PYTHON VENV! @@ -20,10 +29,16 @@ fpm -s python --python-bin python3 --python-pip pip3 --python-package-name-prefi -d "compsrv" \ -v $VERSION -t deb setup.py -mkdir build_extract -mv python3-complib_"$VERSION"_all.deb build_extract -cd build_extract -ar -xv python3-complib_"$VERSION"_all.deb +if [ "$EXTRACT_PKG" == "1" ]; then + echo "Exracting deb package" + mkdir build_extract + mv python3-complib_"$VERSION"_all.deb build_extract + cd build_extract + ar -xv python3-complib_"$VERSION"_all.deb +fi + +export DEB=python3-complib_"$VERSION"_all.deb +echo "Created: $DEB" # --deb-changelog changelog \ # --deb-upstream-changelog changelog \ diff --git a/client_s2/build_extract/control.tar.gz b/client_s2/build_extract/control.tar.gz deleted file mode 100644 index ee8fa94..0000000 Binary files a/client_s2/build_extract/control.tar.gz and /dev/null differ diff --git a/client_s2/build_extract/data.tar.gz b/client_s2/build_extract/data.tar.gz deleted file mode 100644 index 5bd4122..0000000 Binary files a/client_s2/build_extract/data.tar.gz and /dev/null differ diff --git a/client_s2/build_extract/debian-binary b/client_s2/build_extract/debian-binary deleted file mode 100644 index cd5ac03..0000000 --- a/client_s2/build_extract/debian-binary +++ /dev/null @@ -1 +0,0 @@ -2.0 diff --git a/client_s2/build_extract/python3-complib_1.0.0-2_all.deb b/client_s2/build_extract/python3-complib_1.0.0-2_all.deb deleted file mode 100644 index 96ef843..0000000 Binary files a/client_s2/build_extract/python3-complib_1.0.0-2_all.deb and /dev/null differ