mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
Merge 122d7a3ef6
into fec4428ebf
This commit is contained in:
commit
4575df21cb
1 changed files with 37 additions and 0 deletions
37
.github/workflows/tests.yml
vendored
Normal file
37
.github/workflows/tests.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: Build & Run Tests
|
||||
# Thanks to the people working on GM9 and DKP
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container: devkitpro/devkitarm
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Fix apt sources
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get -y install dirmngr
|
||||
echo 'deb http://us.archive.ubuntu.com/ubuntu/ bionic main' >> /etc/apt/sources.list
|
||||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32
|
||||
apt-get update
|
||||
|
||||
- name: Install and update packages
|
||||
run: |
|
||||
apt-get -y install python3 python3-pip p7zip-full libarchive13
|
||||
python3 --version
|
||||
python3 -m pip install --upgrade pip setuptools
|
||||
|
||||
- name: Compile tests
|
||||
run: |
|
||||
make -C tests/SimplerTri
|
||||
make -C tests/ImmediateModeTriangles
|
||||
make -C tests/HelloWorldSVC
|
||||
make -C tests/DetectEmulator
|
Loading…
Add table
Reference in a new issue