Bump curl from 8.4.0 to 8.8.0 #287
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
name: PR Build | |
env: | |
# Set up vcpkg to read from the GitHub cache (https://learn.microsoft.com/en-us/vcpkg/consume/binary-caching-github-actions-cache) | |
VCPKG_BINARY_SOURCES: 'clear;x-gha,readwrite' | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-windows: | |
runs-on: 'windows-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up required environment variables for vcpkg cache | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Install Winget | |
uses: ./.github/workflows/install-winget | |
- name: Setup | |
shell: pwsh | |
run: .\scripts\Setup.ps1 -NoBuildTools | |
- name: Check formatting | |
shell: pwsh | |
run: python .\scripts\check-format.py | |
- name: Build and Test (no test overrides) | |
shell: pwsh | |
run: | | |
.\scripts\Build.ps1 | |
.\scripts\Test.ps1 -OutputOnFailure | |
- name: Build and Test (with test overrides) | |
shell: pwsh | |
run: | | |
.\scripts\Build.ps1 -EnableTestOverrides | |
.\scripts\Test.ps1 -OutputOnFailure | |
build-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up required environment variables for vcpkg cache | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Setup | |
run: source ./scripts/setup.sh | |
- name: Check formatting | |
run: python ./scripts/check-format.py | |
- name: Build and Test (no test overrides) | |
run: | | |
./scripts/build.sh | |
./scripts/test.sh --output-on-failure | |
- name: Build and Test (with test overrides) | |
run: | | |
./scripts/build.sh --enable-test-overrides | |
./scripts/test.sh --output-on-failure |