Fix compute cvalue #398
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: Build | |
on: [push] | |
jobs: | |
Docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build proxy | |
run: | | |
docker build . -t proxy:v1 | |
docker create --name ps proxy:v1 | |
mkdir -p build/docker | |
docker cp ps:/usr/local/bin/proxy_server build/docker | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: proxy_server-linux_musl_x64 | |
path: build/docker/proxy_server | |
Linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update OS and Compilers | |
run: | | |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | |
sudo apt install -y cmake gcc-12 g++-12 ninja-build | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 | |
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 | |
- name: Build proxy | |
run: | | |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF -G Ninja | |
cmake --build build --config Release | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: proxy_server-linux_glibc_x64 | |
path: build/bin/proxy_server | |
Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build proxy | |
run: | | |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF | |
cmake --build build --config Release | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: proxy_server-win_x64 | |
path: build/bin/release/proxy_server.exe |