Add .py file extension to Python

This commit is contained in:
Margen67
2025-07-28 23:54:52 -07:00
parent 03c0e70f8b
commit 4a5f63650d
14 changed files with 31 additions and 31 deletions

View File

@@ -63,7 +63,7 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install clang-format-$LLVM_VERSION
- name: Lint
run: ./xenia-build lint --all
run: ./xenia-build.py lint --all
build-clang:
name: Build (Clang ${{ matrix.LLVM_VERSION }})
@@ -85,12 +85,12 @@ jobs:
sudo apt-add-repository "deb http://apt.llvm.org/${UBUNTU_BASE}/ llvm-toolchain-${UBUNTU_BASE}-${{ matrix.LLVM_VERSION }} main"
sudo apt-get -y update
sudo apt-get -y install mesa-vulkan-drivers valgrind libc++-dev libc++abi-dev libgtk-3-dev libsdl2-dev libvulkan-dev libx11-xcb-dev clang-${{ matrix.LLVM_VERSION }} ninja-build
./xenia-build setup
./xenia-build.py setup
- name: Build
env:
CC: clang-${{ matrix.LLVM_VERSION }}
CXX: clang++-${{ matrix.LLVM_VERSION }}
run: ./xenia-build build --config=Release
run: ./xenia-build.py build --config=Release
- name: Prepare artifacts
id: prepare_artifacts
run: |
@@ -123,13 +123,13 @@ jobs:
# run: |
# sudo apt-get -y update
# sudo apt-get -y install mesa-vulkan-drivers valgrind libc++-dev libc++abi-dev libgtk-3-dev libsdl2-dev libvulkan-dev libx11-xcb-dev g++-${{ matrix.GCC_VERSION }}
# ./xenia-build setup
# ./xenia-build.py setup
# - name: Build
# env:
# CC: gcc-${{ matrix.GCC_VERSION }}
# CXX: g++-${{ matrix.GCC_VERSION }}
# # AR: ar
# run: ./xenia-build build --config=Release
# run: ./xenia-build.py build --config=Release
# - name: Prepare artifacts
# id: prepare_artifacts
# run: |

View File

@@ -56,7 +56,7 @@ jobs:
steps:
- uses: actions/checkout@main
- name: Lint
run: .\xb lint --all
run: .\xenia-build.py lint --all
build:
name: Build
@@ -69,9 +69,9 @@ jobs:
with:
fetch-depth: 0
- name: Setup
run: .\xb setup
run: .\xenia-build.py setup
- name: Build
run: .\xb build --no_premake --config=Release --target=src\xenia-app
run: .\xenia-build.py build --no_premake --config=Release --target=src\xenia-app
- name: Prepare artifacts
id: prepare_artifacts
run: |