mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-23 08:58:52 +00:00
fix: remove git safe directory detection
This commit is contained in:
parent
f7559e0008
commit
6cf1fcfc3a
1 changed files with 4 additions and 1 deletions
5
.github/workflows/flutter-nightly.yml
vendored
5
.github/workflows/flutter-nightly.yml
vendored
|
|
@ -243,12 +243,13 @@ jobs:
|
|||
cmake --version
|
||||
gcc -v
|
||||
run: |
|
||||
# disable git safe.directory
|
||||
git config --global --add safe.directory "*"
|
||||
case "${{ matrix.job.arch }}" in
|
||||
x86_64)
|
||||
export VCPKG_FORCE_SYSTEM_BINARIES=1
|
||||
pushd /artifacts
|
||||
git clone https://github.com/microsoft/vcpkg.git || true
|
||||
git config --global --add safe.directory /artifacts/vcpkg || true
|
||||
pushd vcpkg
|
||||
git reset --hard ${{ env.VCPKG_COMMIT_ID }}
|
||||
./bootstrap-vcpkg.sh
|
||||
|
|
@ -1169,6 +1170,8 @@ jobs:
|
|||
apt update -y
|
||||
apt install -y rpm
|
||||
run: |
|
||||
# disable git safe.directory
|
||||
git config --global --add safe.directory "*"
|
||||
pushd /workspace
|
||||
# install
|
||||
apt update -y
|
||||
|
|
|
|||
Loading…
Reference in a new issue