Skip to content

Commit

Permalink
<fix>(CI): fix github release actions. (#4731)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Nov 25, 2024
1 parent 480f624 commit 2f03c82
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
compile_macOS_release:
name: upload standard binary of macOS
runs-on: macos-13
runs-on: macos-15-large
# runs-on: self-hosted-mac
# if: startsWith(github.ref,'v2')
steps:
Expand Down Expand Up @@ -118,7 +118,13 @@ jobs:
env:
VCPKG_ROOT: ~/cache/vcpkg
DEPS_ROOT: ~/cache/deps
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION: node16
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
steps:
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- uses: actions/checkout@v3
with:
clean: false
Expand Down Expand Up @@ -227,7 +233,13 @@ jobs:
env:
VCPKG_ROOT: ~/cache/vcpkg
DEPS_ROOT: ~/cache/deps
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
ACTIONS_RUNNER_FORCED_INTERNAL_NODE_VERSION: node16
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
steps:
- uses: actions/setup-node@v3
with:
node-version: '16.x'
- uses: actions/checkout@v3
with:
clean: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-github-macOS.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: macOS-13 CI check
name: macOS-15 CI check
on:
push:
paths-ignore:
Expand All @@ -19,7 +19,7 @@ concurrency:
jobs:
compile_macOS_release:
name: macOS
runs-on: macos-13
runs-on: macos-15

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion tools/.ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ WORKDIR /
ARG SOURCE_BRANCH
ENV DEBIAN_FRONTEND=noninteractive \
SOURCE=${SOURCE_BRANCH:-master}
RUN apt-get -q update && apt-get install -qy --no-install-recommends \
RUN apt-get -q update && apt-get install -qy --no-install-recommends python3 \
curl git clang make build-essential cmake libssl-dev zlib1g-dev ca-certificates \
libgmp-dev flex bison patch libzstd-dev unzip ninja-build pkg-config curl zip tar ccache uuid-runtime automake autoconf \
&& ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
Expand Down

0 comments on commit 2f03c82

Please sign in to comment.