Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLIENT-2190] CI/CD: Build server from source code #677

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,20 @@ env:
RUN_INTEGRATION_TESTS_IN_CIBW: ${{ inputs.run_tests && (startsWith(inputs.platform-tag, 'manylinux') || inputs.platform-tag == 'macosx_x86_64') }}

jobs:
get-server-build-from-qe-registry:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
repository: 'citrusleaf/aerospike-server'
ssh-key: ${{ secrets.CITRUSLEAF_SERVER_PRIVATE_KEY }}
submodules: recursive
- run: ./bin/install-dependencies.sh
- name: Build server
run: make -j4
- name: Build debian package
run: make deb

# Maps don't exist in Github Actions, so we have to store the map using a script and fetch it in a job
# This uses up more billing minutes (rounded up to 1 minute for each job run),
# but this should be ok based on the minutes usage data for the aerospike organization
Expand Down
Loading