Skip to content

Commit 01819d0

Browse files
authored
Merge pull request #8334 from cakebaker/ci_use_macos_latest
ci: use `macos-latest` instead of `macos-13`
2 parents 72a3ed4 + d9af611 commit 01819d0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/CICD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ jobs:
543543
- { os: macos-latest , target: aarch64-apple-darwin , features: feat_os_macos, workspace-tests: true } # M1 CPU
544544
# PR #7964: Mac should still build even if the feature is not enabled
545545
- { os: macos-latest , target: aarch64-apple-darwin , workspace-tests: true } # M1 CPU
546-
- { os: macos-13 , target: x86_64-apple-darwin , features: feat_os_macos, workspace-tests: true }
546+
- { os: macos-latest , target: x86_64-apple-darwin , features: feat_os_macos, workspace-tests: true }
547547
- { os: windows-latest , target: i686-pc-windows-msvc , features: feat_os_windows }
548548
- { os: windows-latest , target: x86_64-pc-windows-gnu , features: feat_os_windows }
549549
- { os: windows-latest , target: x86_64-pc-windows-msvc , features: feat_os_windows }

tests/by-util/test_install.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,8 @@ fn strip_source_file() -> &'static str {
693693

694694
#[test]
695695
#[cfg(not(windows))]
696+
// FIXME test runs in a timeout with macos-latest on x86_64 in the CI
697+
#[cfg(not(all(target_os = "macos", target_arch = "x86_64")))]
696698
fn test_install_and_strip() {
697699
let scene = TestScenario::new(util_name!());
698700
let at = &scene.fixtures;
@@ -716,6 +718,8 @@ fn test_install_and_strip() {
716718

717719
#[test]
718720
#[cfg(not(windows))]
721+
// FIXME test runs in a timeout with macos-latest on x86_64 in the CI
722+
#[cfg(not(all(target_os = "macos", target_arch = "x86_64")))]
719723
fn test_install_and_strip_with_program() {
720724
let scene = TestScenario::new(util_name!());
721725
let at = &scene.fixtures;

0 commit comments

Comments
 (0)