Skip to content

Commit

Permalink
Hago que las actions haga el build en tres pasos:
Browse files Browse the repository at this point in the history
1. Server
2. Client
3. Todo

Entiendo que el tercer paso repite el 1 y 2 pero tal vez anade cosas
como tests y eso. Nunca esta de mas

Signed-off-by: Tomas Fabrizio Orsi <[email protected]>
  • Loading branch information
lima-limon-inc committed Oct 27, 2023
1 parent 2c7eb20 commit f82f658
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,15 @@ jobs:
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
- name: Build Server
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target server

- name: Build Client
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target client

- name: Build todo
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

Expand Down

0 comments on commit f82f658

Please sign in to comment.