Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/make-tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Regression tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]

jobs:

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release-win.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Build/publish release binaries (Windows)

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# push:
# # Trigger on version tags: v4.10 etc.
# tags:
Expand All @@ -25,7 +29,7 @@ jobs:
matrix:
include:
- os: windows-latest
artifact_name: prism-win64
artifact_name: prism-games-win64
runs-on: ${{ matrix.os }}

steps:
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build/publish release binaries (Linux, Mac)

# Also build/publish a prism-X.Y-src.tar.gz
# Also build/publish a prism-games-X.Y-src.tar.gz

on:
# push:
Expand All @@ -11,7 +11,7 @@ on:
workflow_dispatch:
inputs:
tag_name:
description: 'Target tag (e.g., v4.10)'
description: 'Target tag (e.g., v3.2.2)'
required: true
type: string
do_publish:
Expand All @@ -38,21 +38,21 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: prism-src
name: prism-games-src
path: prism/release/*.tar.gz

build:
strategy:
matrix:
include:
- os: ubuntu-latest
artifact_name: prism-linux64-x86
artifact_name: prism-games-linux64-x86
- os: ubuntu-22.04-arm
artifact_name: prism-linux64-arm
artifact_name: prism-games-linux64-arm
- os: macos-latest
artifact_name: prism-mac64-arm
artifact_name: prism-games-mac64-arm
- os: macos-15-intel
artifact_name: prism-mac64-x86
artifact_name: prism-games-mac64-x86
runs-on: ${{ matrix.os }}

steps:
Expand Down Expand Up @@ -83,13 +83,13 @@ jobs:
matrix:
include:
- os: ubuntu-latest
artifact_name: prism-linux64-x86
artifact_name: prism-games-linux64-x86
- os: ubuntu-22.04-arm
artifact_name: prism-linux64-arm
artifact_name: prism-games-linux64-arm
- os: macos-latest
artifact_name: prism-mac64-arm
artifact_name: prism-games-mac64-arm
- os: macos-15-intel
artifact_name: prism-mac64-x86
artifact_name: prism-games-mac64-x86
runs-on: ${{ matrix.os }}

steps:
Expand Down