Ruby: Add shared tutorial pack to testing bundle

This commit is contained in:
Aditya Sharad 2022-12-20 10:56:05 -08:00
Родитель bcd711a708
Коммит d2ee8c08c0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 66D1E528054C320C
1 изменённых файлов: 2 добавлений и 1 удалений

3
.github/workflows/ruby-build.yml поставляемый
Просмотреть файл

@ -115,9 +115,10 @@ jobs:
- name: Build Query Pack - name: Build Query Pack
run: | run: |
rm -rf target/packs rm -rf target/packs
codeql pack create ../shared/ssa --output target/packs
codeql pack create ../misc/suite-helpers --output target/packs codeql pack create ../misc/suite-helpers --output target/packs
codeql pack create ../shared/regex --output target/packs codeql pack create ../shared/regex --output target/packs
codeql pack create ../shared/ssa --output target/packs
codeql pack create ../shared/tutorial --output target/packs
codeql pack create ql/lib --output target/packs codeql pack create ql/lib --output target/packs
codeql pack create -j0 ql/src --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" codeql pack create -j0 ql/src --output target/packs --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
PACK_FOLDER=$(readlink -f target/packs/codeql/ruby-queries/*) PACK_FOLDER=$(readlink -f target/packs/codeql/ruby-queries/*)