diff options
| author | Dan Engelbrecht <[email protected]> | 2023-11-07 10:12:58 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-07 10:12:58 +0100 |
| commit | 5db1993bd4b3526ad2953b80f5bd0b796233c703 (patch) | |
| tree | 106f2f7b835aa4f3b0fbc1e9432f6b54972a894f /.github/workflows/create_release.yml | |
| parent | spdlog implementation hiding (#498) (diff) | |
| download | zen-5db1993bd4b3526ad2953b80f5bd0b796233c703.tar.xz zen-5db1993bd4b3526ad2953b80f5bd0b796233c703.zip | |
bump xmake CI version to 2.8.2 (#514)
* bump xmake CI version to 2.8.2
* show test times in log
Diffstat (limited to '.github/workflows/create_release.yml')
| -rw-r--r-- | .github/workflows/create_release.yml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 1d87a7153..658b6b648 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -1,4 +1,7 @@ name: Create Release +env: + VCPKG_VERSION: 2023.07.21 + XMAKE_VERSION: 2.8.2 # 2.8.3 breaks fetching of asio package on MacOS ARM on: push: @@ -9,8 +12,6 @@ jobs: bundle-windows: runs-on: [self-hosted, windows, x64] timeout-minutes: 25 - env: - VCPKG_VERSION: 2023.07.21 steps: - uses: actions/checkout@v3 @@ -18,7 +19,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.8.1 + xmake-version: ${{env.XMAKE_VERSION}} - name: Installing vcpkg run: | @@ -60,8 +61,6 @@ jobs: bundle-linux: runs-on: [self-hosted, linux, x64] timeout-minutes: 25 - env: - VCPKG_VERSION: 2023.07.21 steps: - uses: actions/checkout@v3 @@ -74,7 +73,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: branch@dev # We need a fix for versioning sentry-native which is not available as of 2.8.1 + xmake-version: ${{env.XMAKE_VERSION}} - name: Installing vcpkg run: | @@ -122,8 +121,6 @@ jobs: bundle-macos: runs-on: [self-hosted, macos, x64] timeout-minutes: 25 - env: - VCPKG_VERSION: 2023.07.21 steps: - uses: actions/checkout@v3 @@ -131,7 +128,7 @@ jobs: - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 with: - xmake-version: 2.8.1 + xmake-version: ${{env.XMAKE_VERSION}} - name: Installing vcpkg run: | |