Skip to content

Commit

Permalink
chore: testing adding action environment windows test
Browse files Browse the repository at this point in the history
Signed-off-by: slowy07 <[email protected]>
  • Loading branch information
slowy07 committed Aug 3, 2023
1 parent 5f87806 commit 34a6be6
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Clara Test
name: Clara Test Ubuntu

on:
push:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/cpp-testing-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Clara Test Windows

on:
push:
branches:
- main
- development
pull_request:
branches:
- main
- development

jobs:
build-and-testing-windows:
runs-on: windows-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: Install Eigen (windows)
run: choco install eigen

- name: testing windows
run: |
echo "check g++"
g++ --version
cd clara_test
.\run_test
- name: testing grover search (windows)
run:
g++ -pedantic -std=c++11 -Wall -Wextra -Weffc++ -fopenmp -g3 -DDEBUG -I C:\tools\eigen\include -I C:\clara\include testing\grover_search.cpp -o grover_search.exe
grover_search.exe

0 comments on commit 34a6be6

Please sign in to comment.