Update classes #162
This file contains hidden or 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: Check Executables Match | |
| on: | |
| push | |
| jobs: | |
| build: | |
| if: github.repository_owner == 'iwillcraft-m0d' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Checkout Elf Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: iwillcraft-m0d/dogcomp-elfs | |
| token: ${{ secrets.k4d }} | |
| path: elf | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.x" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -U -r requirements.txt | |
| - name: Setup build environment | |
| run: | | |
| sudo apt-get install binutils-mips-linux-gnu | |
| tools/setup_prodg_linux.sh | |
| - name: Configure and generate report | |
| run: | | |
| python configure.py | |
| ninja |