Adds a crashed pubby as a sand world ruin #11943
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
name: Checks | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
merge_group: | |
branches: | |
- master | |
jobs: | |
run_linters: | |
name: Run Linters | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- uses: actions/checkout@v3 | |
- name: Restore SpacemanDMM cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/SpacemanDMM | |
key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} | |
- name: Restore Yarn cache | |
uses: actions/cache@v3 | |
with: | |
path: tgui/.yarn/cache | |
key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }}-${{ hashFiles('tgui/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ secrets.CACHE_PURGE_KEY }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install Tools | |
run: | | |
pip3 install setuptools | |
bash tools/ci/install_node.sh | |
bash tools/ci/install_byond.sh | |
bash tools/ci/install_spaceman_dmm.sh dreamchecker | |
tools/bootstrap/python -c '' | |
- name: Run Linters | |
run: | | |
tools/build/build --ci lint tgui-test | |
bash tools/ci/check_filedirs.sh shiptest.dme | |
bash tools/ci/check_changelogs.sh | |
bash tools/ci/check_misc.sh | |
bash tools/ci/check_grep.sh | |
tools/bootstrap/python -m dmi.test | |
tools/bootstrap/python -m mapmerge2.dmm_test | |
~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 | |
- name: Annotate Lints | |
uses: yogstation13/DreamAnnotate@v2 | |
if: always() | |
with: | |
outputFile: output-annotations.txt | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Run Check Regex | |
run: | | |
tools/bootstrap/python -m ci.check_regex --log-changes-only --github-actions | |
- name: Annotate Regex Matches | |
if: always() | |
run: | | |
cat check_regex_output.txt | |
compile_all_maps: | |
name: Compile Maps | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Python setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Setup cache | |
id: cache-byond | |
uses: actions/cache@v3 | |
with: | |
path: ~/BYOND | |
key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }} | |
- name: Install BYOND | |
if: steps.cache-byond.outputs.cache-hit != 'true' | |
run: bash tools/ci/install_byond.sh | |
- name: Compile All Maps | |
run: | | |
bash tools/ci/install_byond.sh | |
source $HOME/BYOND/byond/bin/byondsetup | |
tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS -DFULL_INIT | |
run_all_tests: | |
name: Integration Tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
services: | |
mysql: | |
image: mysql:latest | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
ports: | |
- 3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup cache | |
id: cache-byond | |
uses: actions/cache@v3 | |
with: | |
path: ~/BYOND | |
key: ${{ runner.os }}-byond-cache-${{ hashFiles('Dockerfile') }} | |
- name: Install BYOND | |
if: steps.cache-byond.outputs.cache-hit != 'true' | |
run: bash tools/ci/install_byond.sh | |
- name: Setup database | |
run: | | |
sudo systemctl start mysql | |
mysql -u root -proot -e 'CREATE DATABASE tg_ci;' | |
mysql -u root -proot tg_ci < SQL/tgstation_schema.sql | |
mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;' | |
mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql | |
- name: Install rust-g | |
run: | | |
sudo dpkg --add-architecture i386 | |
sudo apt update || true | |
sudo apt install -o APT::Immediate-Configure=false libssl1.1:i386 | |
bash tools/ci/install_rust_g.sh | |
- name: Install auxmos | |
run: | | |
bash tools/ci/install_auxmos.sh | |
- name: Compile Tests | |
run: | | |
bash tools/ci/install_byond.sh | |
source $HOME/BYOND/byond/bin/byondsetup | |
tools/build/build --ci dm -DCIBUILDING -DANSICOLORS | |
- name: Run Tests | |
run: | | |
source $HOME/BYOND/byond/bin/byondsetup | |
bash tools/ci/run_server.sh | |
test_windows: | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
name: Windows Build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore Yarn cache | |
uses: actions/cache@v3 | |
with: | |
path: tgui/.yarn/cache | |
key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }}-${{ hashFiles('tgui/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ secrets.CACHE_PURGE_KEY }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Compile | |
run: pwsh tools/ci/build.ps1 | |
env: | |
DM_EXE: "C:\\byond\\bin\\dm.exe" | |
- name: Create artifact | |
run: | | |
md deploy | |
bash tools/deploy.sh ./deploy | |
- name: Deploy artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: deploy | |
path: deploy |