mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-25 08:51:41 +00:00
Bumps [supercharge/redis-github-action](https://github.com/supercharge/redis-github-action) from 1.4.0 to 1.5.0. - [Release notes](https://github.com/supercharge/redis-github-action/releases) - [Changelog](https://github.com/supercharge/redis-github-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/supercharge/redis-github-action/compare/1.4.0...1.5.0) --- updated-dependencies: - dependency-name: supercharge/redis-github-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
113 lines
3.3 KiB
YAML
113 lines
3.3 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
run_linters:
|
|
name: Run Linters
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: $HOME/SpacemanDMM
|
|
key: ${{ runner.os }}-spacemandmm
|
|
- name: Install Tools
|
|
run: |
|
|
bash tools/ci/install_build_deps.sh
|
|
bash tools/ci/install_dreamchecker.sh
|
|
- name: Run Linters
|
|
run: |
|
|
tools/ci/check_json.sh
|
|
tools/ci/build_tgui.sh
|
|
tools/ci/check_grep.sh
|
|
python3 tools/ci/check_line_endings.py
|
|
python3 tools/ci/check_file_names.py
|
|
python3 tools/ci/unticked_files.py ${GITHUB_WORKSPACE}
|
|
~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1
|
|
- name: Annotate Lints
|
|
uses: yogstation13/DreamAnnotate@v2
|
|
if: always()
|
|
with:
|
|
outputFile: output-annotations.txt
|
|
|
|
compile_all_maps:
|
|
name: Compile All Maps
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: $HOME/BYOND
|
|
key: ${{ runner.os }}-byond
|
|
- name: Compile All Maps
|
|
run: |
|
|
tools/ci/install_byond.sh
|
|
source $HOME/BYOND/byond/bin/byondsetup
|
|
tools/ci/generate_maplist.sh
|
|
tools/ci/dm.sh -DCIMAP paradise.dme
|
|
|
|
unit_tests_and_sql:
|
|
name: Unit Tests + SQL Validation
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
fail-fast: false # Let all map tests run to completion
|
|
matrix:
|
|
maptype: ['/datum/map/cyberiad', '/datum/map/delta', '/datum/map/metastation', '/datum/map/cerestation']
|
|
byondtype: ['STABLE', 'BETA']
|
|
services:
|
|
mariadb:
|
|
image: mariadb:latest
|
|
env:
|
|
MYSQL_ROOT_PASSWORD: root
|
|
ports:
|
|
- 3306
|
|
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: $HOME/BYOND
|
|
key: ${{ runner.os }}-byond
|
|
- name: Setup & Validate DB
|
|
run: |
|
|
sudo systemctl start mysql
|
|
python3 tools/ci/generate_sql_scripts.py
|
|
tools/ci/validate_sql.sh
|
|
- name: Install RUST_G Deps
|
|
run: |
|
|
sudo dpkg --add-architecture i386
|
|
sudo apt update || true
|
|
sudo apt install libssl1.1:i386
|
|
ldd librust_g.so
|
|
- name: Start Redis
|
|
uses: supercharge/redis-github-action@1.5.0
|
|
with:
|
|
redis-version: 6
|
|
- name: Compile & Run Unit Tests
|
|
run: |
|
|
tools/ci/install_byond.sh '${{ matrix.byondtype }}'
|
|
source $HOME/BYOND/byond/bin/byondsetup
|
|
tools/ci/dm.sh -DCIBUILDING paradise.dme
|
|
echo '${{ matrix.maptype }}' > data/next_map.txt
|
|
tools/ci/run_server.sh
|
|
|
|
windows_dll_tests:
|
|
name: Windows RUSTG Validation
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.8.2' # Script was made for 3.8.2
|
|
architecture: 'x86' # This MUST be x86
|
|
- run: python tools/ci/validate_rustg_windows.py
|