dfhack/.github/workflows/build.yml

135 lines
3.7 KiB
YAML

name: Build
2020-04-06 17:57:20 -06:00
on: [push, pull_request]
jobs:
2023-07-30 20:36:12 -06:00
build-linux:
name: Linux gcc-${{ matrix.gcc }}
2023-07-30 20:36:12 -06:00
uses: ./.github/workflows/build-linux.yml
with:
artifact-name: test-gcc-${{ matrix.gcc }}
cache-id: test
stonesense: ${{ matrix.plugins == 'all' }}
extras: ${{ matrix.plugins == 'all' }}
2023-07-30 20:36:12 -06:00
gcc-ver: ${{ matrix.gcc }}
secrets: inherit
strategy:
fail-fast: false
matrix:
include:
- gcc: 10
plugins: "default"
- gcc: 12
plugins: "all"
2023-07-30 20:36:12 -06:00
test-linux:
2023-07-23 02:46:33 -06:00
name: Test (Linux, GCC ${{ matrix.gcc }}, ${{ matrix.plugins }} plugins)
2023-07-30 20:36:12 -06:00
needs: build-linux
2023-07-31 04:56:11 -06:00
runs-on: ubuntu-latest
2020-10-06 22:37:35 -06:00
strategy:
fail-fast: false
matrix:
include:
- gcc: 10
plugins: "default"
- gcc: 12
plugins: "all"
2020-04-06 17:57:20 -06:00
steps:
2023-07-30 20:36:12 -06:00
- name: Download artifact
uses: actions/download-artifact@v3
2020-06-29 20:53:05 -06:00
with:
2023-07-30 22:39:39 -06:00
name: test-gcc-${{ matrix.gcc }}
2023-07-23 02:46:33 -06:00
# - name: Fetch DF cache
# uses: actions/cache@v3
# with:
# path: ~/DF
2023-07-30 20:36:12 -06:00
# key: df-${{ hashFiles('ci/download-df.sh') }}
2023-07-23 02:46:33 -06:00
# - name: Download DF
# run: |
# sh ci/download-df.sh
# - name: Run lua tests
# id: run_tests_lua
# run: |
# export TERM=dumb
# status=0
# script -qe -c "python ci/run-tests.py --headless --keep-status \"$DF_FOLDER\"" || status=$((status + 1))
# python ci/check-rpc.py "$DF_FOLDER/dfhack-rpc.txt" || status=$((status + 2))
# mkdir -p artifacts
# cp "$DF_FOLDER"/test*.json "$DF_FOLDER"/*.log artifacts || status=$((status + 4))
# exit $status
# - name: Upload test artifacts
# uses: actions/upload-artifact@v3
# if: (success() || failure()) && steps.run_tests.outcome != 'skipped'
# continue-on-error: true
# with:
# name: test-artifacts-${{ matrix.gcc }}
# path: artifacts
# - name: Clean up DF folder
# # prevent DFHack-generated files from ending up in the cache
# # (download-df.sh also removes them, this is just to save cache space)
# if: success() || failure()
# run: |
# rm -rf "$DF_FOLDER"
package-linux:
name: Linux package
uses: ./.github/workflows/build-linux.yml
with:
2023-07-31 02:49:02 -06:00
artifact-name: dfhack-linux64-build
append-date-and-hash: true
cache-id: release
stonesense: true
docs: true
secrets: inherit
package-win64:
2023-07-31 02:49:02 -06:00
name: Win64 package
2023-07-30 22:04:52 -06:00
uses: ./.github/workflows/build-windows.yml
with:
2023-07-31 02:49:02 -06:00
artifact-name: dfhack-win64-build
2023-07-30 22:04:52 -06:00
append-date-and-hash: true
2023-07-31 03:50:32 -06:00
cache-id: release
2023-07-30 22:04:52 -06:00
secrets: inherit
2020-10-06 22:28:51 -06:00
docs:
2023-07-30 20:36:12 -06:00
uses: ./.github/workflows/build-linux.yml
with:
platform-files: false
common-files: false
docs: true
secrets: inherit
2020-10-06 22:28:51 -06:00
2020-04-10 21:46:19 -06:00
lint:
runs-on: ubuntu-latest
2020-04-10 21:46:19 -06:00
steps:
2020-06-29 22:41:02 -06:00
- name: Install Lua
2020-04-10 21:46:19 -06:00
run: |
sudo apt-get update
2020-06-29 22:41:02 -06:00
sudo apt-get install lua5.3
2020-04-10 21:47:47 -06:00
- name: Clone DFHack
2023-07-22 23:54:21 -06:00
uses: actions/checkout@v3
2020-04-10 21:47:47 -06:00
with:
submodules: true
2020-04-10 21:46:19 -06:00
- name: Check whitespace
2023-07-30 20:36:12 -06:00
run: python ci/lint.py --git-only --github-actions
2020-04-10 21:46:19 -06:00
- name: Check Authors.rst
2023-07-30 20:36:12 -06:00
if: always()
run: python ci/authors-rst.py
2020-04-10 21:46:19 -06:00
- name: Check for missing documentation
2023-07-30 20:36:12 -06:00
if: always()
run: python ci/script-docs.py
2020-04-10 21:46:19 -06:00
- name: Check Lua syntax
2023-07-30 20:36:12 -06:00
if: always()
run: python ci/script-syntax.py --ext=lua --cmd="luac5.3 -p" --github-actions
2020-04-11 00:22:12 -06:00
check-pr:
runs-on: ubuntu-latest
2020-04-11 00:24:40 -06:00
if: github.event_name == 'pull_request'
2020-04-11 00:22:12 -06:00
steps:
- name: Check that PR is based on develop branch
env:
BASE_BRANCH: ${{ github.base_ref }}
run: |
echo "PR base branch: $BASE_BRANCH"
test "$BASE_BRANCH" = develop