Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into battle-stuff
Browse files Browse the repository at this point in the history
# Conflicts:
#	shim.sym
  • Loading branch information
ZoomTen committed Jun 21, 2021
2 parents b7786bb + 71050d6 commit eb69cfd
Show file tree
Hide file tree
Showing 49 changed files with 5,979 additions and 1,723 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CI

on:
push:
branches: [ master ]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master

- name: Checkout rgbds
uses: actions/checkout@master
with:
path: rgbds
ref: v0.5.1
repository: gbdev/rgbds

- name: Install rgbds
working-directory: rgbds
run: |
sudo make install
- name: Remove rgbds
run: |
rm -rf rgbds
- name: Cache baserom
id: cache-baserom
uses: actions/cache@master
with:
path: baserom.gb
key: ${{ runner.os }}-baserom

- name: Download baserom
if: steps.cache-baserom.outputs.cache-hit != 'true'
run: |
sudo apt-get install wget p7zip-full
wget -O roms.7z 'https://tcrf.net/images/3/33/Pok%C3%A9mon_Gold_-_Spaceworld_1997_Demo_%28Debug%29.7z'
7z e roms.7z
mv P*\(Debug\).sgb baserom.gb
rm -f roms.7z P*\(Header\ Fixed\).sgb
- name: Compare
run: |
make -j$(nproc) compare
if ! git diff-index --quiet HEAD --; then
echo 'Uncommitted changes detected:'
git diff-index HEAD --
return 1
fi
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ $(BUILD)/%.1bpp: %.1bpp.png tools/gfx | $$(dir $$@)
$(BUILD)/%.tilemap: %.png | $$(dir $$@)
$(RGBGFX) -t $@ $<

.PRECIOUS: $(BUILD)/%.sgb.tilemap
$(BUILD)/%.sgb.tilemap: %.bin | $$(dir $$@)
tr < $< -d '\000' > $@

.PRECIOUS: %/
%/:
mkdir -p $@
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pokémon Gold and Silver: Space World 1997 Demo [![Build Status][travis-badge]][travis]
# Pokémon Gold and Silver: Space World 1997 Demo [![Build Status][ci-badge]][ci]

This is a work-in-progress disassembly of the Pokémon Gold and Pokémon Silver prototypes demoed at Space World 1997.

Expand Down Expand Up @@ -38,5 +38,5 @@ Other disassembly projects:
[pokeemerald]: https://github.com/pret/pokeemerald
[discord]: https://discord.gg/d5dubZ3
[irc]: https://kiwiirc.com/client/irc.freenode.net/?#pret
[travis]: https://travis-ci.org/pret/pokegold-spaceworld
[travis-badge]: https://travis-ci.org/pret/pokegold-spaceworld.svg?branch=master
[ci]: https://github.com/pret/pokegold-spaceworld/actions
[ci-badge]: https://github.com/pret/pokegold-spaceworld/actions/workflows/main.yml/badge.svg
Loading

0 comments on commit eb69cfd

Please sign in to comment.