summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-06-15 15:13:16 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-06-15 15:13:16 -0400
commit784e7a150226ad9ea3fbb5ef6aad50cebf65548d (patch)
tree0ad194002326b0f9e6bd0d40d9858efa8d5c38f2
parent250b53f85cecb7c46a2827272e868153d88f98fc (diff)
Symfile no longer part of all target
-rw-r--r--.github/workflows/build.yml33
-rw-r--r--Makefile2
2 files changed, 29 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 351d475f6..df297b2d1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,6 +8,12 @@ on:
jobs:
build:
runs-on: ubuntu-latest
+ env:
+ GAME_VERSION: FIRERED
+ GAME_LANGUAGE: ENGLISH
+ GAME_REVISION: 0
+ MODERN: 0
+ COMPARE: 1
steps:
- name: Checkout
uses: actions/checkout@master
@@ -38,16 +44,33 @@ jobs:
- name: Compare FireRed
run: |
- make -j${nproc} compare_firered
- make -j${nproc} compare_firered_rev1
+ make -j${nproc} all syms
+
+ - name: Compare FireRed rev1
+ env:
+ GAME_REVISION: 1
+ run: |
+ make -j${nproc} all syms
+
+ - name: Compare LeafGreen
+ env:
+ GAME_VERSION: LEAFGREEN
+ run: |
+ make -j${nproc} all syms
- name: Compare LeafGreen
+ env:
+ GAME_VERSION: LEAFGREEN
+ GAME_REVISION: 1
run: |
- make -j${nproc} compare_leafgreen
- make -j${nproc} compare_leafgreen_rev1
+ make -j${nproc} all syms
- name: Modern
- run: make -j${nproc} modern
+ env:
+ MODERN: 1
+ COMPARE: 0
+ run: |
+ make -j${nproc} all
- name: Webhook
if: ${{ github.event_name == 'push' }}
diff --git a/Makefile b/Makefile
index df89c3ef5..9e8c3a106 100644
--- a/Makefile
+++ b/Makefile
@@ -157,7 +157,7 @@ MAKEFLAGS += --no-print-directory
AUTO_GEN_TARGETS :=
-all: tools rom syms
+all: tools rom
syms: $(SYM)