forked from yogstation13/Yogstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfe0942
commit d386184
Showing
1 changed file
with
189 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Turdis | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the master branch | ||
on: | ||
pull_request: | ||
branches: [master, beta] | ||
push: | ||
branches: [master, beta] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
lint: | ||
name: Lints | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache SpacemanDMM | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/SpacemanDMM | ||
key: ${{ runner.os }}-dreamchecker-${{ hashFiles('dependencies.sh')}} | ||
restore-keys: ${{ runner.os }}-dreamchecker | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
|
||
- name: Setup Rust | ||
uses: hecrj/[email protected] | ||
|
||
- name: Install Dependencies | ||
run: | | ||
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | ||
tools/travis/install_build_tools.sh | ||
tools/travis/install_spaceman_dmm.sh dreamchecker | ||
- name: Misc Checks | ||
run: | | ||
python tools/travis/check_dme_alphabetical.py yogstation.dme | ||
tools/travis/check_filedirs.sh yogstation.dme | ||
tools/travis/check_changelogs.sh | ||
find . -name "*.json" -not -path "./tgui/node_modules/*" -print0 | xargs -0 python3 ./tools/json_verifier.py | ||
tools/build/build --ci lint tgui-test | ||
tools/travis/check_grep.sh | ||
- name: Run Linter | ||
id: linter | ||
run: | | ||
~/dreamchecker > ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 | ||
- name: Annotate Linter | ||
uses: yogstation13/DreamAnnotate@v2 | ||
if: always() | ||
with: | ||
outputFile: output-annotations.txt | ||
|
||
compile: | ||
name: Compile All Maps | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
sudo dpkg --add-architecture i386 | ||
sudo apt-get update | ||
sudo apt install libstdc++6:i386 | ||
- name: Restore Cache BYOND | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/BYOND | ||
key: ${{ runner.os }}-byond-${{ hashFiles('Dockerfile')}} | ||
restore-keys: ${{ runner.os }}-byond | ||
- name: Setup BYOND | ||
run: | | ||
tools/travis/install_byond.sh | ||
cd $GITHUB_WORKSPACE | ||
printenv | ||
echo "BYOND_SYSTEM=/home/runner/BYOND/byond" >> $GITHUB_ENV | ||
echo "/home/runner/BYOND/byond/bin" >> $GITHUB_PATH | ||
echo "LD_LIBRARY_PATH=/home/runner/BYOND/byond/bin:$LD_LIBRARY_PATH" >> $GITHUB_ENV | ||
echo "MANPATH=/home/runner/BYOND/byond/man:$MANPATH" >> $GITHUB_ENV | ||
- name: Compile All Maps | ||
run: | | ||
tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS | ||
find_all_maps: | ||
if: "!contains(github.event.head_commit.message, '[ci skip]')" | ||
name: Find Maps to Test | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
maps: ${{ steps.map_finder.outputs.maps }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Find Maps | ||
id: map_finder | ||
run: | | ||
echo "$(ls -mw0 _maps/*.json)" > maps_output.txt | ||
sed -i -e s+_maps/+\"+g -e s+.json+\"+g maps_output.txt | ||
echo "Maps: $(cat maps_output.txt)" | ||
echo "maps={\"paths\":[$(cat maps_output.txt)]}" >> $GITHUB_OUTPUT | ||
test: | ||
name: Compile and Run Tests | ||
runs-on: ubuntu-20.04 | ||
needs: [find_all_maps] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
map: ${{ fromJSON(needs.find_all_maps.outputs.maps).paths }} | ||
services: | ||
mariadb: | ||
image: mariadb | ||
ports: | ||
- 3306:3306 | ||
env: | ||
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: yes | ||
concurrency: | ||
group: ci-${{ github.ref }}-${{ matrix.map }} | ||
cancel-in-progress: true | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
sudo dpkg --add-architecture i386 | ||
sudo apt-get update | ||
sudo apt install libstdc++6:i386 gcc-multilib g++-7 g++-7-multilib zlib1g:i386 libssl1.1 libssl1.1:i386 | ||
- name: Restore Cache BYOND | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/BYOND | ||
key: ${{ runner.os }}-byond-${{ hashFiles('Dockerfile')}} | ||
restore-keys: ${{ runner.os }}-byond | ||
|
||
- name: Restore Cache Auxmos | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.byond | ||
key: auxmos-${{ hashFiles('dependencies.sh')}} | ||
|
||
- name: Restore Yarn Cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: tgui/.yarn/cache | ||
key: ${{ runner.os }}-yarn-${{ hashFiles('Dockerfile')}} | ||
restore-keys: ${{ runner.os }}-yarn | ||
- name: Setup Environment | ||
run: | | ||
tools/travis/install_byond.sh | ||
echo "BYOND_SYSTEM=/home/runner/BYOND/byond" >> $GITHUB_ENV | ||
echo "/home/runner/BYOND/byond/bin" >> $GITHUB_PATH | ||
echo "LD_LIBRARY_PATH=/home/runner/BYOND/byond/bin:$LD_LIBRARY_PATH" >> $GITHUB_ENV | ||
echo "MANPATH=/home/runner/BYOND/byond/man:$MANPATH" >> $GITHUB_ENV | ||
cd $GITHUB_WORKSPACE | ||
tools/travis/install_rust_g.sh | ||
sudo chmod 777 tools/travis/install_extools.sh | ||
tools/travis/install_extools.sh | ||
mysql -u root -h 127.0.0.1 -e 'CREATE DATABASE tg_travis;' | ||
mysql -u root -h 127.0.0.1 tg_travis < SQL/tgstation_schema.sql | ||
- name: Compile | ||
run: | | ||
tools/build/build --ci dm -DCIBUILDING | ||
tools/travis/dm.sh -DTRAVISBUILDING -DANSICOLORS yogstation.dme || travis_terminate 1 | ||
- name: Prepare Artifacts | ||
run: | | ||
mkdir artifacts | ||
cp yogstation.dmb artifacts | ||
cp yogstation.rsc artifacts | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: DMB + RSC ${{matrix.map}} | ||
path: ${{github.workspace}}/artifacts | ||
|
||
- name: Run Tests | ||
run: | | ||
tools/travis/run_server.sh ${{ matrix.map }} | ||
results: | ||
if: ${{ always() }} | ||
runs-on: ubuntu-latest | ||
name: Final Map Test | ||
needs: [test] | ||
steps: | ||
- run: exit 1 | ||
# see https://stackoverflow.com/a/67532120/4907315 | ||
if: >- | ||
${{ | ||
contains(needs.*.result, 'failure') | ||
|| contains(needs.*.result, 'cancelled') | ||
}} |