Update README.md #32
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 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 | |