зеркало из https://github.com/github/codeql.git
17 строки
469 B
YAML
17 строки
469 B
YAML
name: Build Ruby CodeQL pack
|
|
description: Builds the Ruby CodeQL pack
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
ruby/target
|
|
key: ${{ runner.os }}-ruby-qltest-cargo-${{ hashFiles('ruby/rust-toolchain.toml', 'ruby/**/Cargo.lock') }}
|
|
- name: Build Extractor
|
|
shell: bash
|
|
run: scripts/create-extractor-pack.sh
|
|
working-directory: ruby
|