screeps 4.3.0-beta.4 → 4.3.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: Build binaries
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- 'build-binaries'
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
include:
|
|
11
|
+
- os: ubuntu-latest
|
|
12
|
+
platform: linux
|
|
13
|
+
container: node:24-bullseye
|
|
14
|
+
- os: macos-latest
|
|
15
|
+
platform: macos
|
|
16
|
+
- os: windows-latest
|
|
17
|
+
platform: windows
|
|
18
|
+
runs-on: ${{ matrix.os }}
|
|
19
|
+
container: ${{ matrix.container || '' }}
|
|
20
|
+
permissions:
|
|
21
|
+
contents: read
|
|
22
|
+
steps:
|
|
23
|
+
- name: ⤵️ Checkout
|
|
24
|
+
uses: actions/checkout@v4
|
|
25
|
+
- name: 🔨 Setup node
|
|
26
|
+
if: ${{ !matrix.container }}
|
|
27
|
+
uses: actions/setup-node@v4
|
|
28
|
+
with:
|
|
29
|
+
node-version: '24.14.0'
|
|
30
|
+
- name: 👷 Install
|
|
31
|
+
run: npm ci
|
|
32
|
+
- name: 📦 Packing binaries
|
|
33
|
+
shell: bash
|
|
34
|
+
run: |
|
|
35
|
+
mkdir -p dist
|
|
36
|
+
cp node_modules/isolated-vm/build/Release/isolated_vm.node dist/
|
|
37
|
+
cp node_modules/@screeps/driver/native/build/Release/native.node dist/
|
|
38
|
+
|
|
39
|
+
- name: 📦️ Upload binaries
|
|
40
|
+
uses: actions/upload-artifact@v4
|
|
41
|
+
with:
|
|
42
|
+
name: binaries-${{ matrix.platform }}
|
|
43
|
+
path: dist/
|
|
@@ -10,24 +10,27 @@ jobs:
|
|
|
10
10
|
include:
|
|
11
11
|
- os: ubuntu-latest
|
|
12
12
|
platform: linux
|
|
13
|
+
container: node:24-bullseye
|
|
13
14
|
- os: macos-latest
|
|
14
15
|
platform: macos
|
|
15
16
|
- os: windows-latest
|
|
16
17
|
platform: windows
|
|
17
18
|
runs-on: ${{ matrix.os }}
|
|
19
|
+
container: ${{ matrix.container || '' }}
|
|
18
20
|
permissions:
|
|
19
21
|
contents: read
|
|
20
22
|
steps:
|
|
21
23
|
- name: ⤵️ Checkout
|
|
22
|
-
uses: actions/checkout@
|
|
24
|
+
uses: actions/checkout@v6
|
|
23
25
|
- name: 🔨 Setup node
|
|
24
|
-
|
|
26
|
+
if: ${{ !matrix.container }}
|
|
27
|
+
uses: actions/setup-node@v6
|
|
25
28
|
with:
|
|
26
29
|
node-version: '24.x'
|
|
27
30
|
- name: 👷 Install
|
|
28
31
|
run: npm ci
|
|
29
32
|
- name: 📦️ Upload package
|
|
30
|
-
uses: actions/upload-artifact@
|
|
33
|
+
uses: actions/upload-artifact@v7
|
|
31
34
|
with:
|
|
32
35
|
name: package-${{ matrix.platform }}
|
|
33
36
|
path: node_modules/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "screeps",
|
|
3
|
-
"version": "4.3.0-beta.
|
|
3
|
+
"version": "4.3.0-beta.7",
|
|
4
4
|
"description": "A standalone server for programming game Screeps",
|
|
5
5
|
"main": "package.json",
|
|
6
6
|
"bin": {
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@screeps/backend": "3.3.0-beta",
|
|
20
20
|
"@screeps/common": "2.16.0-beta",
|
|
21
|
-
"@screeps/driver": "5.3.0-beta.
|
|
21
|
+
"@screeps/driver": "5.3.0-beta.3",
|
|
22
22
|
"@screeps/engine": "4.3.0-beta",
|
|
23
|
-
"@screeps/launcher": "4.2.0-beta.
|
|
23
|
+
"@screeps/launcher": "4.2.0-beta.3",
|
|
24
24
|
"@screeps/pathfinding": "0.4.17",
|
|
25
25
|
"@screeps/storage": "5.1.3-beta",
|
|
26
26
|
"node_modules-path": "2.0.7"
|