Skip to content

Commit

Permalink
Test migration to new ci (#8064)
Browse files Browse the repository at this point in the history
* add new jenkinsfile

* delete old Jenkinsfile

* test webhook

* change Xcode version
  • Loading branch information
czoido authored Dec 9, 2020
1 parent d1dc08d commit 489266c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
File renamed without changes.
8 changes: 5 additions & 3 deletions conans/test/integration/toolchains/test_meson.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,17 @@ def build(self):
def test_macosx(self):
settings = {"compiler": "apple-clang",
"compiler.libcxx": "libc++",
"compiler.version": "11.0",
"compiler.version": "12.0",
"arch": "x86_64",
"build_type": "Release"}
self._build(settings)

self.assertIn("main __x86_64__ defined", self.t.out)
self.assertIn("main __apple_build_version__", self.t.out)
self.assertIn("main __clang_major__11", self.t.out)
self.assertIn("main __clang_minor__0", self.t.out)
self.assertIn("main __clang_major__12", self.t.out)
# TODO: check why __clang_minor__ seems to be not defined in XCode 12
# commented while migrating to XCode12 CI
#self.assertIn("main __clang_minor__0", self.t.out)

This comment has been minimized.

Copy link
@SSE4

SSE4 Dec 14, 2020

Contributor

weird, for me it is defined:
#define clang_minor 0

Apple clang version 12.0.0 (clang-1200.0.32.21)
Target: x86_64-apple-darwin19.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

@unittest.skipUnless(platform.system() == "Windows", "Only for windows")
def test_win32(self):
Expand Down

0 comments on commit 489266c

Please sign in to comment.