Skip to content

Commit e54a173

Browse files
committed
Remove python dependency.
1 parent 61e62b1 commit e54a173

4 files changed

Lines changed: 10 additions & 12 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ workflows:
382382
version: 2
383383
build_all:
384384
jobs:
385-
# - build-14
385+
- build-14
386386
# - build-12
387387
# - build-10
388388
# - build-electron-11
@@ -402,5 +402,5 @@ workflows:
402402
# - build-macos-electron-7
403403
# - build-macos-electron-6
404404
# - windows-14_x86
405-
# - windows-14_x64
405+
- windows-14_x64
406406
# - windows-14_arm64

deps/extract.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const fs = require('fs');
2+
const tar = require('tar');
3+
4+
const [_node, _script, src, dest] = process.argv;
5+
6+
fs.mkdirSync(dest, { recursive: true });
7+
tar.x({ C: dest, file: src, sync: true });

deps/extract.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

deps/sqlite3.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
'outputs': [
102102
'<(SHARED_INTERMEDIATE_DIR)/sqlcipher-amalgamation-<@(sqlite_version)/sqlite3.c'
103103
],
104-
'action': ['python2','./extract.py','./sqlcipher-amalgamation-<@(sqlite_version).tar.gz','<(SHARED_INTERMEDIATE_DIR)']
104+
'action': ['node','./extract.js','./sqlcipher-amalgamation-<@(sqlite_version).tar.gz','<(SHARED_INTERMEDIATE_DIR)']
105105
}
106106
],
107107
'direct_dependent_settings': {

0 commit comments

Comments
 (0)