diff options
| author | Stefan Boberg <[email protected]> | 2023-05-26 13:57:26 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-05-26 13:57:26 +0200 |
| commit | c8cb928f446165b2cc2ff6e3ae59625cae727f82 (patch) | |
| tree | b5b5430c0348cc3db2d0adcd0e8f5f365874b8eb | |
| parent | bump timeout for create-release to 25 min (linux/mac) (diff) | |
| download | zen-c8cb928f446165b2cc2ff6e3ae59625cae727f82.tar.xz zen-c8cb928f446165b2cc2ff6e3ae59625cae727f82.zip | |
bumped xmake and vcpkg versions
xmake is now 2.7.9 (was 2.6.4)
vcpkg is now 2023.04.15 (was 2022.08.15)
| -rw-r--r-- | .github/workflows/create_release.yml | 12 | ||||
| -rw-r--r-- | .github/workflows/validate.yml | 12 | ||||
| -rw-r--r-- | CHANGELOG.md | 1 |
3 files changed, 13 insertions, 12 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index f20e688bb..a75bc1b09 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -10,7 +10,7 @@ jobs: runs-on: [self-hosted, windows, x64] timeout-minutes: 25 env: - VCPKG_VERSION: 2022.08.15 + VCPKG_VERSION: 2023.04.15 steps: - uses: actions/checkout@v3 @@ -18,7 +18,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.6.4 + xmake-version: 2.7.9 - name: Installing vcpkg run: | @@ -61,7 +61,7 @@ jobs: runs-on: [self-hosted, linux, x64] timeout-minutes: 25 env: - VCPKG_VERSION: 2022.08.15 + VCPKG_VERSION: 2023.04.15 steps: - uses: actions/checkout@v3 @@ -75,7 +75,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.6.4 + xmake-version: 2.7.9 - name: Installing vcpkg run: | @@ -124,7 +124,7 @@ jobs: runs-on: [self-hosted, macos, x64] timeout-minutes: 25 env: - VCPKG_VERSION: 2022.08.15 + VCPKG_VERSION: 2023.04.15 steps: - uses: actions/checkout@v3 @@ -138,7 +138,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.6.4 + xmake-version: 2.7.9 - name: Installing vcpkg run: | diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 43b4d7ea9..ab04d50cc 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -54,7 +54,7 @@ jobs: arch: - 'x64' env: - VCPKG_VERSION: 2022.08.15 + VCPKG_VERSION: 2023.04.15 steps: - name: Checkout @@ -63,7 +63,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.6.4 + xmake-version: 2.7.9 - name: Installing vcpkg run: | # Remove-Item -Recurse .vcpkg @@ -120,7 +120,7 @@ jobs: arch: - 'x86_64' env: - VCPKG_VERSION: 2022.08.15 + VCPKG_VERSION: 2023.04.15 steps: - name: Checkout @@ -135,7 +135,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.6.4 + xmake-version: 2.7.9 - name: Installing vcpkg run: | # rm -rf .vcpkg @@ -191,7 +191,7 @@ jobs: arch: - 'x86_64' env: - VCPKG_VERSION: 2022.08.15 + VCPKG_VERSION: 2023.04.15 steps: - name: Checkout @@ -200,7 +200,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.6.4 + xmake-version: 2.7.9 - name: Installing vcpkg run: | # rm -rf .vcpkg diff --git a/CHANGELOG.md b/CHANGELOG.md index 678ba8754..57036bb7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Bugfix: Zen CLI command help now include descriptions for positional arguments - Improvement: Throw exception with information on failed memory allocation instead of calling ZEN_ASSERT - Improvement: Added support for streaming decompression +- Update: Bump CI VCPKG version to 2023.04.15 and xmake to 2.7.9 (was 2022.08.15 and 2.6.5) ## 0.2.12 - Feature: zenserver/zen: Added zen command line command `scrub` which can be used to trigger a data scrubbing pass which traverses all stored data and verifies its integrity. If any checksum mismatches or structural errors are found the content is dropped. For now this does not provide much feedback in the console, but the zenserver logs will contain information about the operation |