Skip to content

add coro interface for multipart upload (#168) #19

add coro interface for multipart upload (#168)

add coro interface for multipart upload (#168) #19

Workflow file for this run

name: Ubuntu (gcc)
on:
push:
branches: [ master, support-c20 ]
pull_request:
branches: [ master, support-c20 ]
jobs:
ubuntu_gcc:
strategy:
matrix:
mode: [ Debug, Release ]
cpp_version: [11, 20]
runs-on: ubuntu-22.04
steps:
- name: check out
uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get install curl libssl-dev libcurl4-openssl-dev
- name: checkout gcc version
run: gcc --version
- name: configure cmake
run: CXX=g++ CC=gcc cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DCPP_STANDARD=${{ matrix.cpp_version }}
- name: build project
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.mode }}