[FUZZER] Multiple utils and library refactor, fuzzers #25671
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
# This workflow tests that the Aptos CLI can be compiled on Windows | |
name: "Windows CLI Build" | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [labeled, opened, synchronize, reopened, auto_merge_enabled] | |
schedule: | |
# Run twice a day at 12PM PT and 8PM PT Monday through Friday | |
- cron: "0 19,3 * * 1-5" | |
# Run once a day at 12PM PT on Saturday and Sunday | |
- cron: "0 19 * * 6,0" | |
jobs: | |
windows-build: | |
runs-on: windows-latest | |
if: | # Only run on each PR once an appropriate event occurs | |
( | |
github.event_name == 'workflow_dispatch' || | |
github.event_name == 'schedule' || | |
contains(github.event.pull_request.labels.*.name, 'CICD:run-windows-tests') | |
) | |
defaults: | |
run: | |
shell: pwsh | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 # Fetch all git history for accurate target determination | |
- name: Set up WinGet | |
run: Set-Variable ProgressPreference SilentlyContinue ; PowerShell -ExecutionPolicy Bypass -File scripts/windows_dev_setup.ps1 | |
# This action will cache ~/.cargo and ./target (or the equivalent on Windows in | |
# this case). See more here: | |
# https://github.com/Swatinem/rust-cache#cache-details | |
- name: Run cargo cache | |
uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # pin@v2.7.3 | |
- name: Install the Developer Tools | |
run: Set-Variable ProgressPreference SilentlyContinue ; PowerShell -ExecutionPolicy Bypass -File scripts/windows_dev_setup.ps1 -t | |
# This is required for the openssl-sys crate to build. | |
# See: https://github.com/sfackler/rust-openssl/issues/1542#issuecomment-1399358351 | |
- name: Update the VCPKG root | |
run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append | |
- name: Install OpenSSL | |
run: vcpkg install openssl:x64-windows-static-md --clean-after-build | |
# Output the changed files | |
- name: Output the changed files | |
run: cargo x changed-files -vv | |
shell: bash | |
# Output the affected packages | |
- name: Output the affected packages | |
run: cargo x affected-packages -vv | |
shell: bash | |
# Build and test the Aptos CLI (if it has changed) | |
- name: Build and test the CLI | |
run: cargo x targeted-cli-tests -vv | |
shell: bash |