Skip to content

Commit

Permalink
chore: upgrade to iris 4.2.6-build.1 (#1102)
Browse files Browse the repository at this point in the history
* [AUTO] Update dependencies

* chore: wip

* chore: wip

* chore: wip

* chore: wip

* chore: wip

---------

Co-authored-by: LichKing-2234 <[email protected]>
  • Loading branch information
LichKing-2234 and LichKing-2234 authored Nov 9, 2023
1 parent 0010561 commit 195c30d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ runs:
with:
node-version-file: .nvmrc

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11.5

- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Build API Example / Addon

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
workflow_call:
inputs:
Expand All @@ -20,9 +24,12 @@ on:
- sdk
release:
types: [ published ]
pull_request:
types: [labeled, synchronize]

jobs:
build-jenkins:
if: ${{ inputs.type == 'sdk' }}
runs-on: ubuntu-latest
steps:
- name: Build
Expand All @@ -34,7 +41,7 @@ jobs:
-d "{\"branch\": \"${{github.ref_name}}\", \"type\": \"${type}\"}"
build-windows:
if: ${{ inputs.type == 'demo' }}
if: ${{ inputs.type == 'demo' || contains(github.event.pull_request.labels.*.name, 'ci:dep-update') }}
strategy:
matrix:
arch: [ ia32, x64 ]
Expand Down Expand Up @@ -72,7 +79,7 @@ jobs:
build-mac:
if: ${{ inputs.type == 'demo' }}
if: ${{ inputs.type == 'demo' || contains(github.event.pull_request.labels.*.name, 'ci:dep-update') }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Generate ts interface
run: |
yarn ts_interface_builder
yarn build:ts-interface
- name: Generate comments
uses: ./.github/actions/doc
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"install": "cross-env-shell gulp NPM_Install \\\"--INIT_CWD=$INIT_CWD\\\"",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn config set agora-electron-sdk-pre-built 0 && yarn example && yarn install && yarn patch-package && yarn ts_interface_builder && yarn totalBuild && yarn link && yarn example link agora-electron-sdk && yarn config delete agora-electron-sdk-pre-built",
"ts_interface_builder": "ts-interface-builder ts/Private/*.ts -o ts/Private/ti/"
"bootstrap": "yarn config set agora-electron-sdk-pre-built 0 && yarn example && yarn install && yarn patch-package && yarn build:ts-interface && yarn totalBuild && yarn link && yarn example link agora-electron-sdk && yarn config delete agora-electron-sdk-pre-built",
"build:ts-interface": "ts-interface-builder ts/Private/*.ts -o ts/Private/ti/"
},
"keywords": [
"electron",
Expand Down Expand Up @@ -135,7 +135,7 @@
"yuv-canvas": "1.2.6"
},
"agora_electron": {
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_4.2.3-build.4_DCG_Windows_Video_20231019_0355.zip",
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_4.2.3-build.4_DCG_Mac_Video_20231019_0355.zip"
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_4.2.6-build.1_DCG_Windows_Video_20231107_0433.zip",
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_4.2.6-build.1_DCG_Mac_Video_20231107_0433.zip"
}
}

0 comments on commit 195c30d

Please sign in to comment.