mirror of
https://github.com/pkdawson/imgui-godot.git
synced 2026-09-15 19:24:18 +00:00
Remove obsolete workflows
This commit is contained in:
54
.github/workflows/linux.yml
vendored
54
.github/workflows/linux.yml
vendored
@@ -1,54 +0,0 @@
|
||||
name: 🐧 Linux
|
||||
|
||||
# TODO: upload *.so as artifacts
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "doc/cpp-demo/**"
|
||||
branches-ignore:
|
||||
- godot3
|
||||
pull_request:
|
||||
paths:
|
||||
- "doc/cpp-demo/**"
|
||||
branches-ignore:
|
||||
- godot3
|
||||
|
||||
env:
|
||||
VCPKG_ROOT: "${{ github.workspace }}/vcpkg"
|
||||
source: "${{ github.workspace }}/doc/cpp-demo"
|
||||
build: "${{ github.workspace }}/doc/cpp-demo/build.debug"
|
||||
preset: debug
|
||||
config: Debug
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Linux deps
|
||||
run: sudo apt-get install ninja-build
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: clang-format
|
||||
working-directory: ${{ env.source }}
|
||||
run: clang-format --verbose --dry-run --Werror $(git ls-files -- '*.cpp' '*.h')
|
||||
|
||||
- name: Get vcpkg
|
||||
run: |
|
||||
git clone -n https://github.com/microsoft/vcpkg
|
||||
cd vcpkg
|
||||
git checkout 2022.11.14
|
||||
./bootstrap-vcpkg.sh
|
||||
|
||||
- name: CMake Configure
|
||||
run: cmake --preset ${{ env.preset }} ${{ env.source }}
|
||||
|
||||
- name: CMake Build
|
||||
run: cmake --build ${{ env.build }} --config ${{ env.config }} --target install
|
||||
|
||||
- name: CMake Test
|
||||
working-directory: ${{ env.build }}
|
||||
run: ctest -C ${{env.config}}
|
||||
53
.github/workflows/macos.yml
vendored
53
.github/workflows/macos.yml
vendored
@@ -1,53 +0,0 @@
|
||||
name: 🍎 macOS
|
||||
|
||||
# TODO: upload *.dylib / *.framework as artifacts
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "doc/cpp-demo/**"
|
||||
branches-ignore:
|
||||
- godot3
|
||||
pull_request:
|
||||
paths:
|
||||
- "doc/cpp-demo/**"
|
||||
branches-ignore:
|
||||
- godot3
|
||||
|
||||
env:
|
||||
VCPKG_ROOT: "${{ github.workspace }}/vcpkg"
|
||||
VCPKG_DISABLE_METRICS: 1
|
||||
vcpkg_tag: "2022.11.14"
|
||||
source: "${{ github.workspace }}/doc/cpp-demo"
|
||||
build: "${{ github.workspace }}/doc/cpp-demo/build.debug"
|
||||
preset: debug
|
||||
config: Debug
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Build
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- name: macOS deps
|
||||
run: |
|
||||
brew install ninja
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Get vcpkg
|
||||
run: |
|
||||
git clone -n https://github.com/microsoft/vcpkg
|
||||
cd vcpkg
|
||||
git checkout ${{ env.vcpkg_tag }}
|
||||
./bootstrap-vcpkg.sh
|
||||
|
||||
- name: CMake Configure
|
||||
run: cmake --preset ${{ env.preset }} ${{ env.source }}
|
||||
|
||||
- name: CMake Build
|
||||
run: cmake --build ${{ env.build }} --config ${{ env.config }} --target install
|
||||
|
||||
- name: CMake Test
|
||||
working-directory: ${{ env.build }}
|
||||
run: ctest -C ${{env.config}}
|
||||
63
.github/workflows/msvc.yml
vendored
63
.github/workflows/msvc.yml
vendored
@@ -1,63 +0,0 @@
|
||||
name: 🪟 MSVC
|
||||
|
||||
# TODO: upload dlls as artifact
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "doc/cpp-demo/**"
|
||||
branches-ignore:
|
||||
- godot3
|
||||
pull_request:
|
||||
paths:
|
||||
- "doc/cpp-demo/**"
|
||||
branches-ignore:
|
||||
- godot3
|
||||
|
||||
env:
|
||||
VCPKG_ROOT: "${{ github.workspace }}/vcpkg"
|
||||
source: "${{ github.workspace }}/doc/cpp-demo"
|
||||
build: "${{ github.workspace }}/doc/cpp-demo/msvc.debug"
|
||||
preset: msvc.debug
|
||||
config: Debug
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Build and Analyze
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Get vcpkg
|
||||
run: |
|
||||
git clone -n https://github.com/microsoft/vcpkg
|
||||
cd vcpkg
|
||||
git checkout 2022.11.14
|
||||
.\bootstrap-vcpkg.bat
|
||||
|
||||
- name: CMake Configure
|
||||
run: cmake --preset ${{ env.preset }} doc/cpp-demo
|
||||
|
||||
- name: CMake Build
|
||||
run: cmake --build ${{ env.build }} --config ${{ env.config }} --target install
|
||||
|
||||
- name: Run MSVC Code Analysis
|
||||
uses: microsoft/msvc-code-analysis-action@v0.1.1
|
||||
id: run-analysis
|
||||
with:
|
||||
cmakeBuildDirectory: ${{ env.build }}
|
||||
buildConfiguration: ${{ env.config }}
|
||||
ignoredPaths: ${{ env.build }}/_deps
|
||||
ruleset: NativeRecommendedRules.ruleset
|
||||
|
||||
- name: Upload SARIF to GitHub
|
||||
uses: github/codeql-action/upload-sarif@v2
|
||||
with:
|
||||
sarif_file: ${{ steps.run-analysis.outputs.sarif }}
|
||||
|
||||
- name: Upload SARIF as an Artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: sarif-file
|
||||
path: ${{ steps.run-analysis.outputs.sarif }}
|
||||
Reference in New Issue
Block a user