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

chore: fix: ARM64 - Build Centos7 for sqlite3 dependency #28500

Closed
Closed
Changes from all commits
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
11 changes: 10 additions & 1 deletion .circleci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -519,8 +519,16 @@ commands:
# not possible. The built plugin is copied to the project directory so it can be injected into the final binary.
build-better-sqlite3:
description: Build better-sqlite3 for CentOS 7
parameters:
ci_docker:
default: CI_DOCKER
type: env_var_name
steps:
- setup_remote_docker
- when:
condition:
equal: [ 'true', <<parameters.ci_docker>> ]
steps:
- setup_remote_docker
- restore_cache:
keys:
- cypress-centos7-builder-{{ checksum "centos7-builder.Dockerfile" }}
Expand Down Expand Up @@ -3277,6 +3285,7 @@ linux-arm64-workflow: &linux-arm64-workflow
executor: linux-arm64
resource_class: arm.medium
only-cache-for-root-user: true
build-better-sqlite3: true

- build:
name: linux-arm64-build
Expand Down