Skip to content

Commit 7346457

Browse files
committed
Update workflows
1 parent 7887304 commit 7346457

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cmake.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Build
2929
# Build your program with the given configuration
30-
run: g++ test.cpp -o test -std=c++11
30+
run: g++ test_console.cpp -o test_console -std=c++11
3131

3232
#- name: Test
3333
#working-directory: ${{github.workspace}}/build

.github/workflows/msbuild.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
# Add additional options to the MSBuild command line here (like platform or verbosity level).
3838
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
3939
# run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
40-
run: g++ test.cpp -o test.exe -std=c++11
40+
run: g++ test_console.cpp -o test_console.exe -std=c++11

0 commit comments

Comments
 (0)