Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove windows jobs #126

Merged
merged 2 commits into from
Mar 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 0 additions & 65 deletions .circleci/configurations/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -658,71 +658,6 @@ jobs:
-scheme RNTester-visionOS \
-sdk xrsimulator

# -------------------------
# JOBS: Windows
# -------------------------
test_windows:
executor:
name: win/default
environment:
- CHOCO_CACHE_DIR: "C:\\ChocoCache"
steps:
- checkout_code_with_cache

- restore_cache:
keys:
- *windows_choco_cache_key

- run:
name: Choco cache
# Cache our dependencies which can be flakey to download
command: |
if (!Test-Path $env:CHOCO_CACHE_DIR) {
mkdir $env:CHOCO_CACHE_DIR
}
choco config set --name cacheLocation --value $env:CHOCO_CACHE_DIR

- run:
name: Disable NVM
# Use choco to manage node versions due to https://github.com/npm/cli/issues/4234
command: nvm off

- run:
name: Install Node JS
# Note: Version set separately for non-Windows builds, see above.
command: choco install nodejs --version=18.18.0 --allow-downgrade -y

# Setup Dependencies
- run:
name: Enable Yarn with corepack
command: corepack enable

- restore_cache:
keys:
- *windows_yarn_cache_key
- run:
name: "Yarn: Install Dependencies"
command: yarn install --frozen-lockfile --non-interactive

- save_cache:
key: *windows_yarn_cache_key
paths:
- C:\Users\circleci\AppData\Local\Yarn

- save_cache:
key: *windows_choco_cache_key
paths:
- $env:CHOCO_CACHE_DIR

# -------------------------
# Run Tests
- run:
name: "Flow Check"
command: yarn flow-check
- run:
name: "Run Tests: JavaScript Tests"
command: yarn test

# -------------------------
# JOBS: Build Hermes
# -------------------------
Expand Down