[SUTK] Implemented sdf circle #193
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: Ubuntu | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Required Package Installs | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y vulkan-tools | |
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc | |
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy.list http://packages.lunarg.com/vulkan/lunarg-vulkan-jammy.list | |
sudo apt-get update | |
sudo apt-get install -y vulkan-sdk | |
sudo apt-get install -y build-essential | |
sudo apt-get install -y libz-dev | |
sudo apt-get install -y libpng-dev | |
sudo apt-get install -y libbrotli-dev | |
- name: CI-Build | |
run: | | |
sudo chmod +x ./ci-build.sh | |
echo "Building..." | |
./ci-build.sh |