👷 Disabled gh-actions
This commit is contained in:
8
.github-tmp/dependabot.yml
Normal file
8
.github-tmp/dependabot.yml
Normal file
@ -0,0 +1,8 @@
|
||||
# Set update schedule for GitHub Actions
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
# Check for updates to GitHub Actions every weekday
|
||||
interval: "weekly"
|
63
.github-tmp/workflows/conan-pkg.yml
Normal file
63
.github-tmp/workflows/conan-pkg.yml
Normal file
@ -0,0 +1,63 @@
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
name: conan
|
||||
|
||||
jobs:
|
||||
run-conan:
|
||||
runs-on: ${{ matrix.config.os }}
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
config:
|
||||
- name: Ubuntu Debug
|
||||
os: ubuntu-latest
|
||||
conan-profile: ubuntu-debug
|
||||
- name: Ubuntu Release
|
||||
os: ubuntu-latest
|
||||
conan-profile: ubuntu-release
|
||||
|
||||
- name: Windows 2019 Debug
|
||||
os: windows-2019
|
||||
conan-profile: vs-2019-debug
|
||||
- name: Windows 2019 Release
|
||||
os: windows-2019
|
||||
conan-profile: vs-2019-release
|
||||
|
||||
- name: Windows 2022 Debug
|
||||
os: windows-2022
|
||||
conan-profile: vs-2022-debug
|
||||
- name: Windows 2022 Release
|
||||
os: windows-2022
|
||||
conan-profile: vs-2022-release
|
||||
|
||||
name: ${{ matrix.config.name }}
|
||||
env:
|
||||
DXSDK_DIR: C:\apps\Microsoft DirectX SDK\
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-python@v4
|
||||
|
||||
- name: Install Conan
|
||||
run: |
|
||||
pip install -r requirements.txt
|
||||
conan profile new default --detect
|
||||
|
||||
- name: Fix libstdc++11
|
||||
if: startsWith(matrix.config.os, 'ubuntu')
|
||||
run: conan profile update settings.compiler.libcxx=libstdc++11 default
|
||||
|
||||
- name: Enable Developer Command Prompt
|
||||
uses: ilammy/msvc-dev-cmd@v1.10.0
|
||||
|
||||
- name: Run
|
||||
env:
|
||||
CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_LOGIN_USERNAME }}
|
||||
CONAN_PASSWORD: ${{ secrets.CONAN_PASSWORD }}
|
||||
CONAN_PROFILE: ${{ matrix.config.conan-profile }}
|
||||
run: |
|
||||
conan remote add conan-afg https://conan.anotherfoxguy.com
|
||||
python build.py
|
Reference in New Issue
Block a user