-
Notifications
You must be signed in to change notification settings - Fork 11
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
ci: Add feature to use different meson versions #82
base: meson-upstream-master
Are you sure you want to change the base?
ci: Add feature to use different meson versions #82
Conversation
@@ -360,6 +370,9 @@ task: | |||
CCACHE_MAXSIZE: "400M" # tests two different builds | |||
SANITIZER_FLAGS: -fsanitize=alignment,undefined | |||
|
|||
install_meson_and_rebase_script: | | |||
bash src/tools/ci/install_meson_and_rebase.sh ${MESON_REPO} ${MESON_BRANCH} linux | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's probably worth just doing this for all tasks, rather than just this one in the matrix.
I'd really like if we could put the invocation into a single place instead of needing to repeat it in many places. But it's not exactly obvious how. Looks like I should have made all tasks in postgres' .cirrus inline the same yaml block, to make it easier to do stuff like this.
I was wondering if we could use https://cirrus-ci.org/guide/programming-tasks/ to make this easier, but I couldn't find a way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, copying same thing on multiple places doesn't seem good but I couldn't find a way too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder, not as part of this PR, whether we should something like
task_prep: &task_prep
# add scripts to be executed at the start of all tasks here
task_finish: &task_finish
# add scripts to be executed at the end of all tasks here
I would like to filter the set of artifacts uploaded in case of failures, which would be a lot easier if we had something like this...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I was thinking if we could ask for a feature request for something like this to cirrus?
9bf0618
to
5c986e6
Compare
I pushed this with a commit to run on 'pg-ci-images-dev' project since anarazel/pg-vm-images#70 didn't run on 'pg-ci-images' yet. After anarazel/pg-vm-images#70 is merged, I will push this without "run on 'pg-ci-images-dev'" commit. |
f116dd3
to
4d0d3d7
Compare
I just tested it for the new meson version about to be released - very useful! I got one failure that i'm somewhat confused by: https://cirrus-ci.com/task/6190199437262848?logs=configure#L8 An improvement for this would be to list which commit we rebased onto:
Something like
maybe? |
dfc33cf
to
b9d7baf
Compare
I found the cause and fixed it. It seems rebase part changing file endings to CLRF on Windows, I added Also, I realized that CI only collects
Added. |
Great.
Heh, yea, I noticed that too and even wrote an email about it:
Thanks! |
b9d7baf
to
f20b60f
Compare
# Rebase current branch onto Postgres HEAD | ||
rebase_onto_postgres () { | ||
echo "Rebasing onto: $(git show --no-patch --abbrev-commit --pretty=oneline default-postgres/master)" | ||
# freebsd and linux run commands as postgres user |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that actually required? It's true that they run configure / build as postgres, but that shouldn't be affected by source code permissions?
git config core.filemode false | ||
# windows changes file endings to crlf, causing test failures | ||
git config core.autocrlf false | ||
git reset --hard |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the reset --hard needed?
esac | ||
|
||
# After repartition, hidden files are not copied. Copy them to | ||
# working dir |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather fix that in the repartition step?
PYTHON=python | ||
;; | ||
*) | ||
PYTHON=python3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume there's no 'python3' on windows? If not, perhaps we should just add an alias to the image? That's annoying in other places too...
@@ -360,6 +370,9 @@ task: | |||
CCACHE_MAXSIZE: "400M" # tests two different builds | |||
SANITIZER_FLAGS: -fsanitize=alignment,undefined | |||
|
|||
install_meson_and_rebase_script: | | |||
bash src/tools/ci/install_meson_and_rebase.sh ${MESON_REPO} ${MESON_BRANCH} linux | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder, not as part of this PR, whether we should something like
task_prep: &task_prep
# add scripts to be executed at the start of all tasks here
task_finish: &task_finish
# add scripts to be executed at the end of all tasks here
I would like to filter the set of artifacts uploaded in case of failures, which would be a lot easier if we had something like this...
We want to have a branch that uses a specific branch of meson for all tasks. Then, we can create a Cirrus cron "job" that tests Postgres againts different meson branches. Set a different meson branch by using `MESON_REPO` and `MESON_BRANCH` environment variables. Use a bash script to install this specific meson branch and rebase current Postgres branch onto Postgres HEAD. Fixes anarazel#81.
f20b60f
to
0d9be2f
Compare
We want to have a branch that uses a specific branch of meson for all tasks. Then, we can create a Cirrus cron "job" that tests Postgres againts different meson branches.
Set a different meson branch by using
MESON_REPO
andMESON_BRANCH
environment variables. Use a bash script to install this specific meson branch and rebase current Postgres branch onto Postgres HEAD.Fixes #81.
anarazel/pg-vm-images#70 needs to be merged first.