mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-19 14:40:52 +00:00
TMP
This commit is contained in:
parent
22a0f4033a
commit
2dbeafef74
3 changed files with 6 additions and 59 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -14,17 +14,17 @@ jobs:
|
|||
target: [
|
||||
GZDoom,
|
||||
Raze,
|
||||
PrBoom-Plus
|
||||
# PrBoom-Plus
|
||||
]
|
||||
flavor: [
|
||||
{
|
||||
name: Make,
|
||||
args: ''
|
||||
args: '--quasi-glib'
|
||||
},
|
||||
{
|
||||
name: Xcode,
|
||||
args: '--xcode'
|
||||
}
|
||||
# {
|
||||
# name: Xcode,
|
||||
# args: '--xcode'
|
||||
# }
|
||||
]
|
||||
|
||||
steps:
|
||||
|
|
37
.github/workflows/lint.yml
vendored
37
.github/workflows/lint.yml
vendored
|
@ -1,37 +0,0 @@
|
|||
---
|
||||
name: Lint Code
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
if: "!contains(github.event.head_commit.message, '[skip lint]')"
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Super-Linter
|
||||
uses: docker://ghcr.io/github/super-linter:slim-v4
|
||||
env:
|
||||
FILTER_REGEX_INCLUDE: .*(\.py|\.md|\.yml)$
|
||||
FILTER_REGEX_EXCLUDE: .*/deps/.*
|
||||
VALIDATE_NATURAL_LANGUAGE: false
|
||||
VALIDATE_PYTHON_BLACK: false
|
||||
|
||||
- name: Bandit
|
||||
run: |
|
||||
pip3 install bandit
|
||||
# [B101:assert_used] Use of assert detected. The enclosed code will be
|
||||
# removed when compiling to optimised byte code.
|
||||
# [B310:blacklist] Audit url open for permitted schemes. Allowing use
|
||||
# of file:/ or custom schemes is often unexpected.
|
||||
# [B404:blacklist] Consider possible security implications associated
|
||||
# with subprocess module.
|
||||
# [B603:subprocess_without_shell_equals_true] subprocess call - check
|
||||
# for execution of untrusted input.
|
||||
# [B607:start_process_with_partial_path] Starting a process with a
|
||||
# partial executable path
|
||||
bandit --skip B101,B310,B404,B603,B607 --recursive . --exclude \
|
||||
./deps/vulkan-headers/share/vulkan/registry
|
||||
...
|
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
name: Test Libraries
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
if: "!contains(github.event.head_commit.message, '[skip test]')"
|
||||
runs-on: macos-12
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
./build.py --target=test-deps
|
||||
...
|
Loading…
Reference in a new issue