Merge pull request #20 from BlackMATov/dev

Dev
This commit is contained in:
2021-06-25 23:41:09 +07:00
committed by GitHub

View File

@@ -19,7 +19,10 @@ jobs:
- { os: "ubuntu-20.04", cc: "clang-10", cxx: "clang++-10" } - { os: "ubuntu-20.04", cc: "clang-10", cxx: "clang++-10" }
name: "${{matrix.config.cxx}}" name: "${{matrix.config.cxx}}"
steps: steps:
- uses: actions/checkout@v2 - name: Setup
run: sudo apt-get -y install "${{matrix.config.cc}}" "${{matrix.config.cxx}}"
- name: Checkout
uses: actions/checkout@v2
- name: Build && Test - name: Build && Test
run: .ci/build_linux.sh run: .ci/build_linux.sh
env: { CC: "${{matrix.config.cc}}", CXX: "${{matrix.config.cxx}}" } env: { CC: "${{matrix.config.cc}}", CXX: "${{matrix.config.cxx}}" }