Skip to content

Instantly share code, notes, and snippets.

@jmarolf
Last active October 31, 2021 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmarolf/bd76ade8201866cdb7b0adbb58b1a4a3 to your computer and use it in GitHub Desktop.
Save jmarolf/bd76ade8201866cdb7b0adbb58b1a4a3 to your computer and use it in GitHub Desktop.
CI Test Run PICT Model
Configuration : Debug, Release
OS: macOS, Windows, Linux
Bitness: amd64, x86, arm64
Runtime : Core, Framework
IF [OS] = "macOS" OR [OS] = "Linux" THEN [Runtime] = "Core";
IF [OS] = "macOS" OR [OS] = "Linux" THEN [Configuration] = "Debug";
IF [OS] = "Windows" AND [Bitness] = "x86" THEN [Configuration] = "Release";
IF [Runtime] = "Core" THEN [Bitness] <> "x86";
IF [OS] = "Windows" OR [OS] = "Linux" THEN [Bitness] <> "arm64";
@jmarolf
Copy link
Author

jmarolf commented Oct 28, 2021

Results

Configuration Operating System Bitness Runtime
Release Windows x86 Framework
Debug Windows amd64 Core
Debug Linux amd64 Core
Release Windows amd64 Core
Debug Windows amd64 Framework
Debug macOS arm64 Core
Debug macOS amd64 Core

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment