Update build_supermodel.yml #5
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 Supermodel | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libsdl2-dev libsdl2-net-dev build-essential | |
- name: Build Supermodel | |
run: | | |
make -f Makefiles/Makefile.UNIX -j$(nproc) | |
- name: Debug - List Files | |
run: | | |
echo "Listing all files in the repository after build:" | |
find . -type f | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Supermodel-linux-build | |
path: bin/* # Usamos coringa para capturar qualquer arquivo na pasta bin |