Compare commits

...

3 Commits

Author SHA1 Message Date
orange 43e2af556f 5.5.2 2026-08-04 23:00:40 +03:00
orange 550a08c24e fix 2026-08-04 22:39:04 +03:00
orange 70fba5addd fix freebsd 2026-08-04 16:08:01 +03:00
3 changed files with 50 additions and 42 deletions
+7 -3
View File
@@ -458,21 +458,25 @@ jobs:
with: with:
submodules: recursive submodules: recursive
- name: Build and Test - name: Start FreeBSD VM
uses: cross-platform-actions/action@v0.31.0 uses: cross-platform-actions/action@v1.3.0
with: with:
operating_system: freebsd operating_system: freebsd
architecture: ${{ matrix.arch }} architecture: ${{ matrix.arch }}
version: '15.0' version: '15.0'
memory: '12G' memory: '12G'
cpu_count: 4 cpu_count: 4
- name: Build and Test
shell: cpa.sh {0}
run: | run: |
sudo pkg install -y git curl zip unzip gmake llvm gsed bash perl5 openssl 7-zip coreutils cmake ninja pkgconf patchelf sudo pkg install -y git curl zip unzip gmake llvm gsed bash perl5 openssl 7-zip coreutils cmake ninja pkgconf patchelf
git config --global --add safe.directory `pwd` git config --global --add safe.directory `pwd`
# Build vcpkg in /tmp to avoid sshfs timestamp sync issues # Build vcpkg in /tmp to avoid sshfs timestamp sync issues
export VCPKG_ROOT=/tmp/vcpkg export VCPKG_ROOT=/tmp/vcpkg
rm -rf "$VCPKG_ROOT" rm -rf "$VCPKG_ROOT"
git clone https://github.com/microsoft/vcpkg "$VCPKG_ROOT" # FreeBSD 15 packages CMake 3.31; newer vcpkg requires CMake 4.3.
git clone --branch 2026.06.24 --depth 1 https://github.com/microsoft/vcpkg "$VCPKG_ROOT"
cd "$VCPKG_ROOT" cd "$VCPKG_ROOT"
./bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh
cd - cd -
+7 -3
View File
@@ -375,21 +375,25 @@ jobs:
with: with:
submodules: recursive submodules: recursive
- name: Build and Package - name: Start FreeBSD VM
uses: cross-platform-actions/action@v0.31.0 uses: cross-platform-actions/action@v1.3.0
with: with:
operating_system: freebsd operating_system: freebsd
architecture: ${{ matrix.arch }} architecture: ${{ matrix.arch }}
version: '15.0' version: '15.0'
memory: '12G' memory: '12G'
cpu_count: 4 cpu_count: 4
- name: Build and Package
shell: cpa.sh {0}
run: | run: |
sudo pkg install -y git curl zip unzip gmake llvm gsed bash perl5 openssl 7-zip coreutils cmake ninja pkgconf patchelf sudo pkg install -y git curl zip unzip gmake llvm gsed bash perl5 openssl 7-zip coreutils cmake ninja pkgconf patchelf
git config --global --add safe.directory `pwd` git config --global --add safe.directory `pwd`
# Build vcpkg in /tmp to avoid sshfs timestamp sync issues # Build vcpkg in /tmp to avoid sshfs timestamp sync issues
export VCPKG_ROOT=/tmp/vcpkg export VCPKG_ROOT=/tmp/vcpkg
rm -rf "$VCPKG_ROOT" rm -rf "$VCPKG_ROOT"
git clone https://github.com/microsoft/vcpkg "$VCPKG_ROOT" # FreeBSD 15 packages CMake 3.31; newer vcpkg requires CMake 4.3.
git clone --branch 2026.06.24 --depth 1 https://github.com/microsoft/vcpkg "$VCPKG_ROOT"
cd "$VCPKG_ROOT" cd "$VCPKG_ROOT"
./bootstrap-vcpkg.sh ./bootstrap-vcpkg.sh
cd - cd -
+1 -1
View File
@@ -1 +1 @@
5.5.1 5.5.2