Skip to content

Update README.md

Update README.md #32

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Windows Build Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1.4.1
- name: Build with VS-C++
run: cl BUILD.c && ./BUILD.exe -cl
- name: testing CL executable
run: .\build\retriever -l 'vinissou' .\src\app.c
#working-directory: ${{env.GITHUB_WORKSPACE}}
- name: Build-Clang
run: clang BUILD.c && ./a.exe
- name: testing executable
run: .\build\retriever -l 'vinissou' .\src\app.c