mirror of https://github.com/ansible/ansible.git
Add macOS 13 to CI and ansible-test (#79508)
* ✨ Add macOS 13.2 to `ansible-test` * 🧪 Replace macOS 12.0 with 13.2 in the CI matrix * Skip `lookup_url` under macOS 13.2 This is due to https://wefearchange.org/2018/11/forkmacos.rst.html that manifests itself as follows: TASK [lookup_url : Test that retrieving a url works] *************************** objc[15394]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. objc[15394]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in t he fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug. ERROR! A worker was found in a dead state * 📝 Extend ansible-test change note w/ macOS 13.2pull/80134/head
parent
c0e0550bce
commit
8fec2d2a82
@ -1,4 +1,11 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group3
|
shippable/posix/group3
|
||||||
needs/httptester
|
needs/httptester
|
||||||
skip/macos/12.0 # This test crashes Python due to https://wefearchange.org/2018/11/forkmacos.rst.html
|
skip/macos/13.2 # This test crashes Python due to https://wefearchange.org/2018/11/forkmacos.rst.html
|
||||||
|
# Example failure:
|
||||||
|
#
|
||||||
|
# TASK [lookup_url : Test that retrieving a url works] ***************************
|
||||||
|
# objc[15394]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called.
|
||||||
|
# objc[15394]: +[__NSCFConstantString initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in t
|
||||||
|
# he fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
|
||||||
|
# ERROR! A worker was found in a dead state
|
||||||
|
Loading…
Reference in New Issue