8000 try3 · aegis-aead/libaegis@a0add1b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

try3

try3 #5

Workflow file for this run

name: CMake
on:
push:
branches: [ "cl" ]
pull_request:
branches: [ "cl" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Configure CMake
env:
CC: clang-cl
CMAKE_GENERATOR=Ninja

Check failure on line 24 in .github/workflows/cl.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cl.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
env:
CC: clang-cl
CMAKE_GENERATOR=Ninja
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
0