Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
Signed-off-by: fufesou <[email protected]>
  • Loading branch information
fufesou committed Dec 27, 2024
1 parent e5024d3 commit 2f215a2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1523,9 +1523,7 @@ jobs:
rpm \
unzip \
wget \
xz-utils \
fuse \
libfuse-dev
xz-utils
# we have libopus compiled by us.
apt-get remove -y libopus-dev || true
# output devs
Expand All @@ -1549,15 +1547,17 @@ jobs:
""" > ~/.cargo/config
cat ~/.cargo/config
# start build
apt-cache search udev
pushd /workspace
export VCPKG_ROOT=/opt/artifacts/vcpkg
# # build libfuse for feature "unix-file-copy-paste", we can use `apt install fuse3,libfuse3-dev` if we use ubuntu 20.04
# sudo apt install -y meson ninja-build
# git clone https://github.com/libfuse/libfuse.git
# pushd libfuse
# git checkout fuse-3.16.2
# mkdir build && cd build && meson .. && ninja install
# popd
# build libfuse for feature "unix-file-copy-paste", we can use `apt install fuse3,libfuse3-dev` if we use ubuntu 20.04
apt install -y meson ninja-build pkg-config udev
git clone https://github.com/libfuse/libfuse.git
pushd libfuse
git checkout fuse-3.13.0
mkdir build && cd build && meson .. && ninja install
popd
ldconfig && pkg-config --modversion fuse3
if [[ "${{ matrix.job.arch }}" == "aarch64" ]]; then
export JOBS="--jobs 3"
else
Expand Down Expand Up @@ -1803,9 +1803,7 @@ jobs:
unzip \
wget \
xz-utils \
zip \
fuse \
libfuse-dev
zip
# arm-linux needs CMake and vcokg built from source as there
# are no prebuilts available from Kitware and Microsoft
if [ "${{ matrix.job.vcpkg-triplet }}" = "arm-linux" ]; then
Expand Down Expand Up @@ -1882,14 +1880,16 @@ jobs:
exit 1
fi
head -n 100 "${VCPKG_ROOT}/buildtrees/ffmpeg/build-${{ matrix.job.vcpkg-triplet }}-rel-out.log" || true
# # build libfuse for feature "unix-file-copy-paste", we can use `apt install fuse3,libfuse3-dev` if we use ubuntu 20.04
# sudo apt install -y meson ninja-build
# git clone https://github.com/libfuse/libfuse.git
# pushd libfuse
# git checkout fuse-3.16.2
# mkdir build && cd build && meson .. && ninja install
# popd
# build rustdesk
apt-cache search udev
# build libfuse for feature "unix-file-copy-paste", we can use `apt install fuse3,libfuse3-dev` if we use ubuntu 20.04
apt install -y meson ninja-build pkg-config udev
git clone https://github.com/libfuse/libfuse.git
pushd libfuse
git checkout fuse-3.13.0
mkdir build && cd build && meson .. && ninja install
popd
ldconfig && pkg-config --modversion fuse3
build rustdesk
python3 ./res/inline-sciter.py
export CARGO_INCREMENTAL=0
cargo build --features inline${{ matrix.job.extra_features }} --release --bins --jobs 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flutter-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ jobs:
secrets: inherit
with:
upload-artifact: true
upload-tag: "test-fuse"
upload-tag: "test-build-fuse-lib"

0 comments on commit 2f215a2

Please sign in to comment.