Edited linux_yandex_mirror.html #211
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
name: C++ | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
win-msvc: | |
name: Windows (MSVC) (windows-latest) | |
runs-on: windows-latest | |
steps: | |
- name: Git Clone | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
cd cpp | |
mkdir build | |
cd build | |
cmake .. -G "Visual Studio 17 2022" -A x64 | |
cmake --build . --config Release --target calc | |
cmake --build . --config Release --target num_systems | |
cmake --build . --config Release --target unix_time | |
- name: Upload artifact (calc.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: calc_cpp_win_msvc | |
path: cpp\build\Release\calc.exe | |
- name: Upload artifact (num_systems.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: num_systems_cpp_win_msvc | |
path: cpp\build\Release\num_systems.exe | |
- name: Upload artifact (unix_time.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unix_time_cpp_win_msvc | |
path: cpp\build\Release\unix_time.exe | |
win-gcc: | |
name: Windows (GCC) (windows-latest) | |
runs-on: windows-latest | |
steps: | |
- name: Git Clone | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
cd cpp | |
mkdir build | |
cd build | |
cmake .. -G "MinGW Makefiles" | |
cmake --build . --target calc | |
cmake --build . --target num_systems | |
cmake --build . --target unix_time | |
- name: Upload artifact (calc.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: calc_cpp_win_gcc | |
path: cpp\build\calc.exe | |
- name: Upload artifact (num_systems.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: num_systems_cpp_win_gcc | |
path: cpp\build\num_systems.exe | |
- name: Upload artifact (unix_time.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unix_time_cpp_win_gcc | |
path: cpp\build\unix_time.exe | |
linux: | |
name: Linux (ubuntu-latest) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Clone | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
cd cpp | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --target calc | |
cmake --build . --target num_systems | |
cmake --build . --target unix_time | |
- name: Upload artifact (calc.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: calc_cpp_linux | |
path: cpp/build/calc | |
- name: Upload artifact (num_systems.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: num_systems_cpp_linux | |
path: cpp/build/num_systems | |
- name: Upload artifact (unix_time.cpp) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unix_time_cpp_linux | |
path: cpp/build/unix_time |