Update CEF version to 131.4.1 #550
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
schedule: | |
- cron: '0 0 * * 1' | |
name: Build Chronos | |
jobs: | |
build: | |
continue-on-error: true | |
strategy: | |
matrix: | |
version: [current, stable, beta] | |
runs-on: [ windows-2022 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: microsoft/setup-msbuild@v2 | |
with: | |
vs-version: '[17, 18)' | |
- if: matrix.version == 'stable' | |
name: Use stable version of CEF | |
run: | | |
bash .github/rewrite-cef-version.sh ${{ matrix.version }} | |
- if: matrix.version == 'beta' | |
name: Use beta version of CEF | |
run: | | |
bash .github/rewrite-cef-version.sh ${{ matrix.version }} | |
- name: Setup cache for CEF | |
uses: actions/cache@v4 | |
with: | |
path: cef-cache/*/ | |
key: cef-${{ runner.os }}-${{ hashFiles('setup-cef.bat') }} | |
- name: Setup CEF | |
run: .\setup-cef.bat | |
- name: Compile Chronos | |
run: msbuild /m /p:Platform=Win32 /p:Configuration=R64_CSG | |
- name: Prepare upload | |
run: move R32 Chronos | |
- name: Prepare Chronos.exe to launch easily | |
run: echo F | xcopy /V /F /Y Chronos\ChronosN.exe Chronos\Chronos.exe | |
- if: matrix.version == 'current' | |
name: Upload Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Chronos | |
path: Chronos | |
- if: matrix.version == 'stable' | |
name: Upload Build (stable) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Chronos-stable | |
path: Chronos | |
- if: matrix.version == 'beta' | |
name: Upload Build (beta) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Chronos-beta | |
path: Chronos |