Implemented sk_assetpack
module (for loading SKAP files) (#31)
#160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-linux | |
on: | |
push: | |
branches: [master] | |
paths: | |
- 'include/**' | |
- 'src/**' | |
- 'test/**' | |
- 'tools/**' | |
- 'vendor/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'BSDmakefile' | |
- 'GNUmakefile' | |
- 'config.mk' | |
pull_request: | |
branches: [master] | |
types: [opened, synchronize] | |
paths: | |
- 'include/**' | |
- 'src/**' | |
- 'test/**' | |
- 'tools/**' | |
- 'vendor/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'BSDmakefile' | |
- 'GNUmakefile' | |
- 'config.mk' | |
schedule: | |
- cron: '0 0 * * 1' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
build-analyze: | |
permissions: | |
security-events: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout-repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: install-dependencies | |
run: xargs sudo apt-get install -y < Aptfile | |
- name: setup-rust-cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-targets: "false" | |
- name: setup-codeql | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: c-cpp | |
config: | | |
paths-ignore: [vendor] | |
- name: build | |
run: make -j$(nproc) | |
- name: build-editor | |
run: make editor -j$(nproc) | |
- name: test | |
run: make check -j$(nproc) | |
- name: test-coverage-report | |
uses: codecov/codecov-action@v4.0.1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: analyze | |
uses: github/codeql-action/analyze@v3 |