Skip to content

Commit

Permalink
Add ubuntu and macOS arm64 tests
Browse files Browse the repository at this point in the history
In response to #374
(For my future reference: The list of bazel ci supported platforms is in PLATFORMS, here: https://github.com/bazelbuild/continuous-integration/blob/master/buildkite/bazelci.py)
  • Loading branch information
cpsauer committed Apr 3, 2023
1 parent a8f658f commit 1327d09
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .bazelci/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,24 @@ tasks:
- "//..."
test_targets:
- "//..."
ubuntu2004_arm64:
working_directory: test
build_targets:
- "//..."
test_targets:
- "//..."
macos:
working_directory: test
build_targets:
- "//..."
test_targets:
- "//..."
macos_arm64:
working_directory: test
build_targets:
- "//..."
test_targets:
- "//..."
windows:
working_directory: test
environment:
Expand Down
6 changes: 5 additions & 1 deletion config.lzma-linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@
/* #undef HAVE_COMMONCRYPTO_COMMONDIGEST_H */

/* Define to 1 if you have the <cpuid.h> header file. */
#define HAVE_CPUID_H 1
#if defined __has_include
#if __has_include (<cpuid.h>)
#define HAVE_CPUID_H 1
#endif
#endif

/* Define if the GNU dcgettext() function is already present or preinstalled.
*/
Expand Down

0 comments on commit 1327d09

Please sign in to comment.