Skip to content

Commit

Permalink
Merge branch 'compiling-branch' into jansson-upt
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushaway authored Oct 11, 2023
2 parents c2f6702 + 0774997 commit d9905f4
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ jobs:
strategy:
fail-fast: false
matrix:

os: [ubuntu-20.04, windows-2019]
sourcemod-version: [1.11-dev]
include:
- os: ubuntu-20.04
target-archs: x86,x86_64


- os: windows-2019
target-archs: x86,x86_64

steps:
- name: Install Linux packages
if: runner.os == 'Linux'
Expand All @@ -26,15 +28,15 @@ jobs:
sudo apt install -yq --no-install-recommends g++-multilib
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: extension

- name: Checkout SourceMod
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: alliedmodders/sourcemod
ref: ${{ matrix.sourcemod-version }}
Expand All @@ -47,7 +49,7 @@ jobs:
pip install git+https://github.com/alliedmodders/ambuild
- name: Checkout AMBuild
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: alliedmodders/ambuild
path: ambuild
Expand All @@ -64,7 +66,7 @@ jobs:
ambuild
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}
path: extension/build/package
Expand All @@ -78,7 +80,7 @@ jobs:

steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3

- name: Package
run: |
Expand Down

0 comments on commit d9905f4

Please sign in to comment.