blob: 329a472140dc2b24f9023887183eff7d4273184d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#! /bin/bash -vex
set -x -e
export PATH=$MOZ_FETCHES_DIR/node/bin:$PATH
cd /builds/worker
$MOZ_FETCHES_DIR/codeql/codeql database create \
--language=javascript \
-J=-Xmx32768M \
--source-root=$GECKO_PATH \
codeql-database
# TODO Switch this to zst per 1637381 when this is used for static analysis jobs
tar cf codeql-db-javascript.tar codeql-database
xz codeql-db-javascript.tar
|