-
Notifications
You must be signed in to change notification settings - Fork 6
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
Reusable workflow testing #75
Conversation
Use same versions as in the other Docker images: - major -> 3 - minor -> 0 Suggested-at: #68 (comment) Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Install QEMU for all CPU architectures but amd64. At the moment this is just arm64 but now adding a new arch will not require changes to this step Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Split by whitespace Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Remove debug statements and commented out code Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
Test quay push
.github/workflows/generic_build.yml
Outdated
# ---------------------------------------------------------------------- | ||
|
||
# Build each arch's image | ||
for arch in $archs_and_images ; do |
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.
Currently only an AMD64 image is added to the manifest - https://pipelinesghubeus24.actions.githubusercontent.com/0YHXh0QGzpCiRgaqrcqmDx4aoYjcAOBDwhzeyyC598TlkSuHqS/_apis/pipelines/1/runs/345/signedlogcontent/2?urlExpires=2024-02-05T15%3A40%3A20.3157368Z&urlSigningMethod=HMACV1&urlSignature=hK6kHUewgqlYl8%2BGIobY20GzaihVEyRhvkhn2ZBPr00%3D.
I think this should be for arch in "${archs_and_images[@]}"; do
to iterate over the strings in the Bash array.
Do you need any help with this ? |
@martin-g I just commented over in #74 (comment) to keep the info contained within that issue. |
Closing in favor of bioconda/bioconda-utils#953; see #74 for rationale. |
This PR is for working out the details of how reusable workflows for container building might work to address #64 and to make building {arm,amd}64 containers more straightforward -- and therefore more sustainable for community maintenance.