Skip to content

fix resizing bug when in editor #137

fix resizing bug when in editor

fix resizing bug when in editor #137

Workflow file for this run

name: Arch Linux
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Pull Docker Image
run: docker pull archlinux:base-devel
- name: Checkout Repository
uses: actions/checkout@v2
- name: Run Steps in New Container
run: |
docker run --rm -v ${{ github.workspace }}:/app archlinux:base-devel bash -c '
# Install build deps
pacman -Syu cmake shaderc glfw-x11 glm rustup stb sdl2 assimp --noconfirm
rustup default stable
# Run Build
cd /app && mkdir build && cd build
cmake ..
make
'
# Additional commands within the container if needed