Revert "编辑器模式下物体缩放轴的vertex_data_size计算中多加了8,有一个多余的白色方块" #402
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Linux | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
configuration: [debug, release] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Install dependencies | |
run: | | |
sudo apt install libxrandr-dev | |
sudo apt install libxinerama-dev | |
sudo apt install libxcursor-dev | |
sudo apt install libxi-dev | |
sudo apt install libglvnd-dev | |
sudo apt install libvulkan-dev | |
- name: Build | |
run: ./build_linux.sh ${{matrix.configuration}} |