Skip to content

Commit ab7cd34

Browse files
committed
30.2.4sl36-m12-test1
1 parent e441565 commit ab7cd34

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

.github/workflows/main.yml

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: 'CI Multiplatform Build'
1+
name: "CI Multiplatform Build"
22

33
on:
44
push:
55
paths-ignore:
6-
- '**.md'
7-
branches: [ "staging" ]
6+
- "**.md"
7+
branches: ["staging"]
88
tags:
9-
- '*'
9+
- "*"
1010
pull_request:
1111
paths-ignore:
12-
- '**.md'
13-
branches: [ "staging" ]
12+
- "**.md"
13+
branches: ["staging"]
1414

1515
env:
1616
InstallPath: "obs-studio-node"
@@ -22,12 +22,12 @@ env:
2222
SLGenerator: Visual Studio 17 2022
2323
SLDistributeDirectory: distribute
2424
SLFullDistributePath: "streamlabs-build.app/distribute" # The .app extension is required to run macOS tests correctly.
25-
LibOBSVersion: 30.2.4sl35
25+
LibOBSVersion: 30.2.4sl36-m12-test1
2626
PACKAGE_NAME: osn
2727

2828
jobs:
2929
macos64:
30-
name: 'macOS'
30+
name: "macOS"
3131
runs-on: ${{ matrix.image }}
3232
strategy:
3333
matrix:
@@ -46,30 +46,30 @@ jobs:
4646
env:
4747
OS_TAG: "osx"
4848
steps:
49-
- name: 'Checkout'
49+
- name: "Checkout"
5050
uses: actions/checkout@v3
5151
with:
52-
submodules: 'recursive'
52+
submodules: "recursive"
5353
- name: Get the version
5454
id: get_version
5555
run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
5656
shell: bash
5757
- name: Install Node.js
5858
uses: actions/setup-node@v3
5959
with:
60-
node-version: '18.x'
60+
node-version: "18.x"
6161
- name: Install dependencies
6262
shell: bash
63-
run: './ci/install-dependencies-osx.sh'
64-
- name: 'Configure obs-studio-node'
63+
run: "./ci/install-dependencies-osx.sh"
64+
- name: "Configure obs-studio-node"
6565
shell: bash
66-
run: './ci/configure-osn-osx.sh'
66+
run: "./ci/configure-osn-osx.sh"
6767
env:
6868
BUILD_CONFIG: ${{matrix.BuildConfig}}
6969
RELEASE_NAME: ${{matrix.ReleaseName}}
7070
ARCHITECTURE: ${{matrix.Architecture}}
7171
tagartifact: ${{ steps.get_version.outputs.VERSION }}
72-
- name: 'Build obs-studio-node'
72+
- name: "Build obs-studio-node"
7373
run: ./ci/build-osn-osx.sh
7474
shell: bash
7575
env:
@@ -80,12 +80,12 @@ jobs:
8080
run: node ci/bump-version.js "${{ steps.get_version.outputs.VERSION }}" "${{env.PACKAGE_PATH}}"
8181
env:
8282
PACKAGE_PATH: "${{env.SLFullDistributePath}}/${{env.InstallPath}}"
83-
- name: 'Run tests'
83+
- name: "Run tests"
8484
continue-on-error: true
85-
run: 'yarn run test'
85+
run: "yarn run test"
8686
env:
8787
SLOBS_BE_STREAMKEY: ${{secrets.testsStreamKey}}
88-
SLOBS_TEST_USER_POOL_TOKEN: ${{secrets.testsUserPoolToken}}
88+
SLOBS_TEST_USER_POOL_TOKEN: ${{secrets.testsUserPoolToken}}
8989

9090
OSN_ACCESS_KEY_ID: ${{secrets.AWS_RELEASE_ACCESS_KEY_ID}}
9191
OSN_SECRET_ACCESS_KEY: ${{secrets.AWS_RELEASE_SECRET_ACCESS_KEY}}
@@ -108,26 +108,26 @@ jobs:
108108
run: aws s3 cp ${{env.TARGET_ARTIFACT}}.tar.gz s3://${{env.RELEASE_BUCKET}} --acl public-read
109109
env:
110110
TARGET_ARTIFACT: ${{env.PACKAGE_NAME}}-${{ steps.get_version.outputs.VERSION }}-${{matrix.ReleaseName}}-${{env.OS_TAG}}-${{matrix.Architecture}}
111-
- name: 'Upload debug files to Sentry'
111+
- name: "Upload debug files to Sentry"
112112
if: startsWith(github.ref, 'refs/tags/')
113-
run: 'python ./ci/sentry-osx.py'
113+
run: "python ./ci/sentry-osx.py"
114114
env:
115-
SENTRY_AUTH_TOKEN: ${{secrets.SENTRY_AUTH_TOKEN}}
116-
BUILDCONFIG: ${{matrix.BuildConfig}}
115+
SENTRY_AUTH_TOKEN: ${{secrets.SENTRY_AUTH_TOKEN}}
116+
BUILDCONFIG: ${{matrix.BuildConfig}}
117117

118118
win64:
119-
name: 'Windows 64-bit'
119+
name: "Windows 64-bit"
120120
runs-on: windows-latest
121121
strategy:
122122
matrix:
123123
ReleaseName: [release]
124124
include:
125-
- ReleaseName: release
126-
ReleaseConfig: RelWithDebInfo
125+
- ReleaseName: release
126+
ReleaseConfig: RelWithDebInfo
127127
env:
128128
OS_TAG: "win64"
129129
steps:
130-
- name: 'Add msbuild to PATH'
130+
- name: "Add msbuild to PATH"
131131
uses: microsoft/setup-msbuild@v1
132132
- name: Install older build components
133133
run: |
@@ -145,10 +145,10 @@ jobs:
145145
$process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
146146
$process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
147147
shell: powershell
148-
- name: 'Checkout'
148+
- name: "Checkout"
149149
uses: actions/checkout@v3
150150
with:
151-
submodules: 'recursive'
151+
submodules: "recursive"
152152
- name: Get the version
153153
id: get_version
154154
run: |
@@ -172,12 +172,12 @@ jobs:
172172
env:
173173
PACKAGE_PATH: "${{env.SLFullDistributePath}}/${{env.InstallPath}}"
174174

175-
- name: 'Run tests'
175+
- name: "Run tests"
176176
continue-on-error: false
177-
run: 'yarn run test'
177+
run: "yarn run test"
178178
env:
179179
SLOBS_BE_STREAMKEY: ${{secrets.testsStreamKey}}
180-
SLOBS_TEST_USER_POOL_TOKEN: ${{secrets.testsUserPoolToken}}
180+
SLOBS_TEST_USER_POOL_TOKEN: ${{secrets.testsUserPoolToken}}
181181

182182
OSN_ACCESS_KEY_ID: ${{secrets.AWS_RELEASE_ACCESS_KEY_ID}}
183183
OSN_SECRET_ACCESS_KEY: ${{secrets.AWS_RELEASE_SECRET_ACCESS_KEY}}
@@ -211,9 +211,9 @@ jobs:
211211
AWS_SYMB_SECRET_ACCESS_KEY: ${{secrets.AWS_SYMB_SECRET_ACCESS_KEY}}
212212
shell: powershell
213213

214-
- name: 'Copy necessary dll files'
214+
- name: "Copy necessary dll files"
215215
run: ./ci/copy-files.cmd
216-
- name: 'Prepare tag artifact'
216+
- name: "Prepare tag artifact"
217217
if: startsWith(github.ref, 'refs/tags/')
218218
run: ./ci/prepare-artifact.cmd
219219

0 commit comments

Comments
 (0)