forked from rumblefrog/setup-sp
-
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
e00b8ef
commit 71a92af
Showing
17 changed files
with
1,880 additions
and
120 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,41 @@ | ||
name: Setup and test AMXXPawn | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run: | ||
name: Run action | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
amxxVersion: ['1.10.x', '1.9.x'] | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Setup AMXXPawn Compiler (local action) | ||
if: github.event_name == 'pull_request' | ||
uses: ./ | ||
with: | ||
version: ${{ matrix.amxxVersion }} | ||
|
||
- name: Setup AMXXPawn Compiler (master) | ||
if: github.event_name != 'pull_request' | ||
uses: wopox1337/setup-amxxpawn@master | ||
with: | ||
version: ${{ matrix.amxxVersion }} | ||
|
||
- name: Verify compiler | ||
run: | | ||
echo "which amxxpc: $(which amxxpc)" | ||
echo "includePath directory list: $includePath" | ||
ls -l $includePath | ||
echo "scriptingPath directory list: $scriptingPath" | ||
ls -l $scriptingPath | ||
amxxpc __tests__/compile.sma |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
* @rumblefrog | ||
* @wopox1337 |
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
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
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,8 @@ | ||
#include <amxmodx> | ||
|
||
#pragma semicolon 1 | ||
|
||
public plugin_init() | ||
{ | ||
server_print("Hello, World!"); | ||
} |
This file was deleted.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 @@ | ||
/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */ | ||
|
||
/*! ws. MIT License. Einar Otto Stangvik <[email protected]> */ |
Oops, something went wrong.