mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Update Linux version on CI
This commit is contained in:
parent
0aa1ed21b2
commit
850aadb0f6
3 changed files with 13 additions and 13 deletions
12
.github/workflows/Linux_AppImage_Build.yml
vendored
12
.github/workflows/Linux_AppImage_Build.yml
vendored
|
@ -16,7 +16,7 @@ jobs:
|
||||||
# well on Windows or Mac. You can convert this to a matrix build if you need
|
# well on Windows or Mac. You can convert this to a matrix build if you need
|
||||||
# cross-platform coverage.
|
# cross-platform coverage.
|
||||||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -33,11 +33,11 @@ jobs:
|
||||||
sudo ./llvm.sh 17
|
sudo ./llvm.sh 17
|
||||||
|
|
||||||
- name: Setup Vulkan SDK
|
- name: Setup Vulkan SDK
|
||||||
run: |
|
uses: humbletim/setup-vulkan-sdk@v1.2.0
|
||||||
wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
with:
|
||||||
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-focal.list http://packages.lunarg.com/vulkan/lunarg-vulkan-focal.list
|
vulkan-query-version: latest
|
||||||
sudo apt update
|
vulkan-use-cache: true
|
||||||
sudo apt install vulkan-sdk
|
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
||||||
|
|
12
.github/workflows/Qt_Build.yml
vendored
12
.github/workflows/Qt_Build.yml
vendored
|
@ -96,7 +96,7 @@ jobs:
|
||||||
path: 'Alber.zip'
|
path: 'Alber.zip'
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -117,11 +117,11 @@ jobs:
|
||||||
sudo ./llvm.sh 17
|
sudo ./llvm.sh 17
|
||||||
|
|
||||||
- name: Setup Vulkan SDK
|
- name: Setup Vulkan SDK
|
||||||
run: |
|
uses: humbletim/setup-vulkan-sdk@v1.2.0
|
||||||
wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
with:
|
||||||
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-focal.list http://packages.lunarg.com/vulkan/lunarg-vulkan-focal.list
|
vulkan-query-version: latest
|
||||||
sudo apt update
|
vulkan-use-cache: true
|
||||||
sudo apt install vulkan-sdk
|
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang-17 -DCMAKE_CXX_COMPILER=clang++-17 -DENABLE_USER_BUILD=ON -DENABLE_QT_GUI=ON
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang-17 -DCMAKE_CXX_COMPILER=clang++-17 -DENABLE_USER_BUILD=ON -DENABLE_QT_GUI=ON
|
||||||
|
|
|
@ -94,7 +94,7 @@ class PICAShader {
|
||||||
u32 entrypoint = 0; // Initial shader PC
|
u32 entrypoint = 0; // Initial shader PC
|
||||||
|
|
||||||
// We want these registers in this order & with this alignment for uploading them directly to a UBO
|
// We want these registers in this order & with this alignment for uploading them directly to a UBO
|
||||||
// When emulating shaders on the GPU
|
// When emulating shaders on the GPU. Plus this alignment for float uniforms is necessary for doing SIMD in the shader->CPU recompilers.
|
||||||
alignas(16) std::array<vec4f, 96> floatUniforms;
|
alignas(16) std::array<vec4f, 96> floatUniforms;
|
||||||
alignas(16) std::array<std::array<u8, 4>, 4> intUniforms;
|
alignas(16) std::array<std::array<u8, 4>, 4> intUniforms;
|
||||||
u32 boolUniform;
|
u32 boolUniform;
|
||||||
|
|
Loading…
Add table
Reference in a new issue