-
Notifications
You must be signed in to change notification settings - Fork 337
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
Windows Tests via Docker #781
Windows Tests via Docker #781
Conversation
Initially adcac21 added rez to the systempaths, but this should not be necessary. It creates failure in tests if rez is not in the systempath, which should not be a requirement for any shell. Also conformed the parameters in cmd's and powershell's spawn_shell that otherwise will end up in Popen_args.
Fresh Windows systems have unexpanded %systemroot% in their PATH variable, which causes `which()` to fail.
|
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.
Seems good to me, still voting to move python into the docker image. But i would not want to let this delay this effort.
Thanks for the feedback. |
Please ignore the pushes for a while since I'm testing on this branch on my fork :-/ Sorry for the noise. |
6c63710
to
ca28dfe
Compare
Another thing I should check: If the image building and usage is in the same workflow I could express the dependency and we would not need to separate the process into two commits. I'll check if this is possible with github actions. Essentially I would need the 'paths:' checks within a conditional of a step. |
3a7510d
to
f195429
Compare
f7dabea
to
040c9ad
Compare
735c820
to
7ee59e6
Compare
Tests with regular github actions failed (potentially due to overflown PATH variable), so instead this tries to test via a clean windows docker image.
73c6894
to
9f83ddc
Compare
History cleaned up. Verified it working. The PR is open again. |
9f83ddc
to
49f89bb
Compare
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.
The docker side looks good to me. Big thanks your work on this :)
This PR includes two fixes for cmd/powershell on windows and requires #775 to succeed future Windows tests.
Currently relying on hub.docker.com as the github service is broken:
https://gh.neting.ccmunity/t5/GitHub-Actions/Docker-Push-to-Package-Registry-from-Windows/m-p/36393#M2560
Setup Before Merging
(as configured in the PR, feel free to change if needed)
Choose a name (like "Github Access Token") and copy the token
DOCKERHUB_TOKEN
and paste the TOKEN from dockerOnce merged the
Compose Windows Docker Image
action should run.The
Windows Docker
tests will fail at this point, but future pushes should succeed.In future any required change to the docker image should be a separate PR as documented.
As such the regular actions will not run when only the docker image related files have been touched.
Similarly the image will not be rebuild when none of its files have been touched. Since the image is tagged with the latest revision on these files everything should always be in sync and use the correct images moving forward.
There is some ugliness in the duplication of code throughout the workflow files. GH Actions pros may find better ways to pass the environments instead of recalculating them.
Fingers crossed!