-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Refactor smoke tests to use submodules #2702
Changes from all commits
1e8959c
fc22a23
46b761e
828fd8d
752ede9
fbceb7d
bb1f1c3
57a4e6a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[submodule "smoke/docs"] | ||
path = smoke/docs | ||
url = [email protected]:withastro/docs.git | ||
branch = main | ||
[submodule "smoke/astro.build"] | ||
path = smoke/astro.build | ||
url = [email protected]:withastro/astro.build.git | ||
branch = main | ||
Comment on lines
+1
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This points By default, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I should mention that users won't do this often, but our smoke test action can specifically populate them just for that run. Seems much better than the previous system! |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
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.
This is the extent of the changes to our actions. This pulls in the submodules recursively, so they always reflect the latest commit to
main
every time they run.