RPA checks + scripts.rpa handling #2911
Workflow file for this run
This file contains 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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
pull_request: | |
branches: [ content ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
name: ci_build | |
# The type of runner that the job will run on | |
runs-on: ubuntu-20.04 | |
env: | |
MAS_RENPY_VER: 8.1.1 | |
MAS_BASE_DIR: masbase | |
MAS_DIR: mas | |
RENPY_DIR: renpy | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
# Version range or exact version of a Python version to use, using SemVer's version range syntax. | |
python-version: 3.10.4 # optional, default is 3.x | |
# get/dl renpy src | |
- name: cache rpy source | |
id: cache-rpy | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.RENPY_DIR }}/ | |
key: rpy | |
- name: Download rpy source | |
if: steps.cache-rpy.outputs.cache-hit != 'true' | |
run: | | |
renpysdk=renpy-$MAS_RENPY_VER-sdk.tar.bz2 | |
wget https://www.renpy.org/dl/$MAS_RENPY_VER/$renpysdk | |
tar xf $renpysdk | |
rm $renpysdk | |
mv ${renpysdk/.tar.bz2/} $RENPY_DIR | |
# get/download base mas | |
- name: cache base MAS | |
id: cache-mas | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.MAS_BASE_DIR }}/ | |
key: masbase | |
- name: download base MAS | |
if: steps.cache-mas.outputs.cache-hit != 'true' | |
run: | | |
wget https://monika-after-story.s3.us-west-2.amazonaws.com/ddlc/mas8.zip | |
mkdir $MAS_BASE_DIR | |
unzip mas8.zip -d $MAS_BASE_DIR/ # this is so we cache ONLY the aws download and NOT the full repo | |
# setup build folder | |
- name: setup build folder | |
run: | | |
mkdir $MAS_DIR | |
cp -Rf $MAS_BASE_DIR/* $MAS_DIR/ | |
# copy over gh files to base | |
- name: copy source over | |
run: cp -Rf Monika\ After\ Story/* $MAS_DIR/ | |
# run sprite checkers | |
- name: check sprites | |
run: python tools/ghactions.py | |
# lint renpy | |
- name: rpy lint | |
run: | | |
cd $RENPY_DIR | |
./renpy.sh "../$MAS_DIR/" lint | grep -E -v "^$|Could not find image \(monika [0-9][^[:space:]]+ corresponding to attributes on say statement\.|'monika [0-9][^[:space:]]+' is not an image\.|The image named 'monika [0-9][^[:space:]]+ was not declared\." | |
# setup open GL for distribute | |
- name: setup openGL | |
run: | | |
sudo apt-get install cmake pkg-config | |
sudo apt-get install mesa-utils libglu1-mesa-dev freeglut3-dev mesa-common-dev | |
sudo apt-get install libglew-dev libglfw3-dev libglm-dev | |
sudo apt-get install libao-dev libmpg123-dev | |
# distribute | |
- name: rpy distribute | |
run: | | |
cd $RENPY_DIR | |
./renpy.sh launcher distribute "../$MAS_DIR/" --package linux |