-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CLIENT-2279] CI/CD: Add option to build debug wheels (#508)
- Loading branch information
1 parent
88f92d2
commit 0d97fc4
Showing
4 changed files
with
54 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 'Update version' | ||
description: 'Update version in repo without committing. Repo must already be checked out' | ||
inputs: | ||
new_version: | ||
description: Version string to set | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Update __version__ in aerospike module | ||
run: sed -i "s/const char version\[] = \".*\";/const char version\[] = \"${{ inputs.new_version }}\";/" src/main/aerospike.c | ||
shell: bash | ||
|
||
- name: Update VERSION metadata | ||
run: echo ${{ inputs.new_version }} > VERSION | ||
shell: bash |
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
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
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