Skip to content

Commit

Permalink
Add PREBUILD_SCRIPT support.
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rj1k committed Feb 21, 2024
1 parent 5078383 commit 72ef828
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci-deb-packages-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ on:
type: string
default: 'echo "No custom bootstrap script was provided"'
description: Custom `sh` bootstrap script
PREBUILD_SCRIPT:
required: false
type: string
default: 'echo "No custom prebuild script was provided"'
description: Custom `sh` prebuild script
INSTALL_DEPENDENCIES:
required: false
type: boolean
Expand Down Expand Up @@ -150,6 +155,8 @@ jobs:
printenv DEB_BUILD_OPTIONS
fi
eval "${{ inputs.PREBUILD_SCRIPT }}"
debuild -b -us -uc && mv -v ../*.deb .
EOF
Expand All @@ -172,6 +179,8 @@ jobs:
# eval inside runner
hash=$(echo $GITHUB_SHA | cut -c1-10)
eval "${{ inputs.PREBUILD_SCRIPT }}"
PACKAGE_RELEASE="$GITHUB_RUN_ID.\${hash}" cmake . -DCMAKE_BUILD_TYPE=${{ inputs.CMAKE_BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ inputs.CMAKE_INSTALL_PREFIX }} && make package
EOF
Expand All @@ -181,7 +190,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: build debs
- name: Build debs in Docker
shell: sh
run: |
docker run --platform linux/${{ inputs.PLATFORM }} --rm --entrypoint="/usr/local/bin/run.sh" -w /root -v $(pwd):/root -v /tmp/${GITHUB_RUN_ID}/run.sh:/usr/local/bin/run.sh ${{ inputs.BASE_IMAGE }}:${{ inputs.DISTRO_CODENAME }}
Expand Down

0 comments on commit 72ef828

Please sign in to comment.