メガドライブソフトをCircleCIでビルドする
きっかけ
macOSをCatalinaにアップグレードしたら、WineでのSGDKプロジェクトビルドができなくなったので…。仲間内でビルド環境を共有したいし、ちょうどよいかなと。
前提
GitHubアカウントがあればよい。リポジトリは作っておく。CircleCIはGitHubアカウントでログイン可能なので、リポジトリを連携する。
ビルド設定
SGDKのお作法に則ってsrcディレクトリに*.c
や*.h
ファイルなど(bootディレクトリもお忘れなく…)、resディレクトリに*.res
やリソースファイルを置いておく。
.circleci/config.yml
version: 2
jobs:
build:
docker:
- image: ubuntu:bionic
steps:
- run: |
apt-get update
apt-get install -y curl texinfo openjdk-8-jre make
- run: |
curl -L -o gendev.deb https://github.com/kubilus1/gendev/releases/download/0.4.1/gendev_0.4.1_all.deb
dpkg -i gendev.deb
rm gendev.deb
- checkout
- run: |
export GENDEV=/opt/gendev
make -f $GENDEV/sgdk/mkfiles/makefile.gen clean all
- store_artifacts:
path: ./res
- store_artifacts:
path: ./out
リソースのヘッダファイルを確認したかったので、store_artifacts
に./res
を含めている。
ハマりポイント
-
GENDEV公式には
openjdk-8-jdk
が必要とあったが、debパッケージインストール時はopenjdk-8-jre
が求められた -
checkout
は空ディレクトリを期待しているので、rm gendev.deb
をしないとエラーになる
参考文献
Author And Source
この問題について(メガドライブソフトをCircleCIでビルドする), 我々は、より多くの情報をここで見つけました https://qiita.com/taro_kay/items/e692d335cb729cd61404著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .