-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4882795
commit 16a699c
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build Tests | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths-ignore: | ||
- README.md | ||
- .gitignore | ||
- .gitattributes | ||
pull_request: | ||
branches: [ main ] | ||
paths-ignore: | ||
- README.md | ||
- .gitignore | ||
- .gitattributes | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: godotengine/godot | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: modules | ||
- name: Linux dependencies for tests | ||
run: | | ||
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list | ||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EB8B81E14DA65431D7504EA8F63F0F2B90935439 | ||
sudo add-apt-repository "deb https://ppa.launchpadcontent.net/kisak/turtle/ubuntu focal main" | ||
sudo apt-get install -qq mesa-vulkan-drivers | ||
- name: Setup python and scons | ||
uses: ./.github/actions/godot-deps | ||
- name: Build | ||
run: scons platform=linuxbsd |