Bump github.com/webx-top/com from 1.3.19 to 1.3.25 #336
Workflow file for this run
This file contains hidden or 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: MSBuild | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
env: | |
SOLUTION_FILE_PATH: . | |
BUILD_CONFIGURATION: Release | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
key: ${{ runner.os }}-deno-${{ hashFiles('**/deps.ts') }}-${{ hashFiles('**/import_map.json') }} | |
path: | | |
~\.deno | |
~\AppData\Local\deno | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
C:\vcpkg | |
./vcpkg | |
key: ${{ runner.os }}-vcpkg-${{ hashFiles('**/xmake.lua') }} | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
C:\Users\runneradmin\AppData\Local\.xmake | |
key: ${{ runner.os }}-xmake-${{ hashFiles('**/xmake.lua') }} | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
vs-prerelease: true | |
- name: vcpkg-action | |
uses: johnwason/vcpkg-action@v4 | |
with: | |
triplet: x64-windows-release | |
pkgs: "gtest cppunit" | |
token: ${{ github.token }} | |
- name: Setup Deno | |
uses: denoland/[email protected] | |
with: | |
deno-version: v1.33.1 | |
- uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: 2.9.6 | |
actions-cache-folder: ".xmake-cache" | |
- run: deno task cache | |
- run: xmake lua install.lua | |
- run: deno run -A xmake.ts --mode=test --group=test --executable=xmake.exe | |
- run: xmake.exe clean -a | |
- run: xmake.exe f -y -v --project=. "--file=./xmake.lua" | |
- run: xmake.exe build -v -y -w --project=. "--file=./xmake.lua" | |
continue-on-error: true | |
- run: xmake.exe clean -a | |
- run: xmake.exe f -y -v --project=. "--file=./xmake.lua" --mode=test | |
- run: xmake.exe build -v -y -w --project=. "--file=./xmake.lua" --group=test | |
- run: xmake run --group=test |