summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-03-24 02:02:49 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-04-06 04:32:13 -0600
commit18c774b76eaad65a3f96d663a67b6e1cf60e571a (patch)
treed873d79990a6cbbba9c15e15bb268511bd078434 /.github
parent975e96e03e39469b7b01cc019924be377ba6429b (diff)
Removed decomp workflows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml51
-rw-r--r--.github/workflows/format.yaml19
2 files changed, 0 insertions, 70 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
deleted file mode 100644
index 21bdc828..00000000
--- a/.github/workflows/ci.yaml
+++ /dev/null
@@ -1,51 +0,0 @@
-name: Build
-
-# Build on every branch push, tag push, and pull request change:
-on: [push, pull_request_target]
-
-jobs:
- build_repo:
- name: Build repo
- runs-on: ubuntu-latest
-
- strategy:
- fail-fast: false
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
- with:
- ref: ${{ github.event.pull_request.head.sha }}
-
- - name: Install package requirements
- run: sudo apt-get install -y git make git build-essential binutils-mips-linux-gnu python3 python3-pip
-
- - name: Install Python dependencies
- run: python3 -m pip install -r ./tools/requirements-python.txt
-
- - name: Update submodules
- run: git submodule update --init --recursive
-
- - name: build toolchain
- run: make -s -C tools
-
- - name: Get extra dependencies
- uses: actions/checkout@v4
- with:
- repository: ${{ secrets.SF64_DEPENDENCIES }}
- token: ${{ secrets.SF64_TOKEN }}
- path: sf64-secret
-
- - name: Get the dependency
- run: cp -r sf64-secret/baserom.us.z64 ./
-
- - name: Compile
- run: make init
-
-# - name: Upload frogress
-# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
-# run: python3 tools/upload_frogress.py --apikey ${{ secrets.PROGRESS_API_KEY }}
-
- - name: Upload progress to Discord
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
- run: python3 tools/upload_progress.py --discord_url ${{ secrets.DISCORD_URL }}
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml
deleted file mode 100644
index 3e6d933f..00000000
--- a/.github/workflows/format.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Check Format
-
-# Build on every branch push, tag push, and pull request change:
-on: [push, pull_request]
-
-jobs:
- build:
- name: Check format
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout reposistory
- uses: actions/checkout@v4
-
- - name: Install package requirements
- run: sudo apt-get install -y python3 python3-pip clang-format-14 clang-tidy-14
-
- - name: Check format
- run: ./tools/check_format.sh