You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Setup SourcePawn Compiler
v1.2.0
This action sets-up, cache and adds sourcemod scripting directory to the path
See action.yml
steps:
- uses: actions/checkout@v1
- uses: rumblefrog/setup-sp@master
with:
version: '1.10.x'
- run: spcomp -iAnotherIncludeDirectory plugin.sp -o output/plugin.smx
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
sm-version: [ '1.10.x', '1.11.x', '1.11.6467', '>= 1.11.6478']
name: SM version ${{ matrix.sm-version }}
steps:
- uses: actions/checkout@v1
- name: Setup SP
uses: rumblefrog/setup-sp@master
with:
version: ${{ matrix.sm-version }}
- run: spcomp -iAnotherIncludeDirectory plugin.sp -o output/plugin.smx
jobs:
build:
runs-on: ubuntu-latest
name: SM version ${{ matrix.sm-version }}
steps:
- uses: actions/checkout@v1
- name: Setup SP
id: setup_sp
uses: rumblefrog/setup-sp@master
with:
version: '1.10.x'
version-file: ./plugin.sp
- run: |
spcomp -iAnotherIncludeDirectory plugin.sp -o output/plugin.smx
echo Plugin version ${{ steps.setup_sp.outputs.plugin-version }}
A complete workflow example can be found here.