|
@@ -5,7 +5,7 @@ jobs:
|
|
|
runs-on: windows-latest
|
|
runs-on: windows-latest
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
|
- - name: Set up Clang
|
|
|
|
|
|
|
+ - name: Setup Clang
|
|
|
uses: egor-tensin/setup-clang@v1
|
|
uses: egor-tensin/setup-clang@v1
|
|
|
with:
|
|
with:
|
|
|
version: 15
|
|
version: 15
|
|
@@ -53,14 +53,24 @@ jobs:
|
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
|
- - name: Set up Clang
|
|
|
|
|
|
|
+ - name: Setup Clang
|
|
|
uses: egor-tensin/setup-clang@v1
|
|
uses: egor-tensin/setup-clang@v1
|
|
|
with:
|
|
with:
|
|
|
version: 15
|
|
version: 15
|
|
|
platform: x64
|
|
platform: x64
|
|
|
|
|
+ - name: Install Dependencies
|
|
|
|
|
+ run: |
|
|
|
|
|
+ sudo apt install -y libc++-15-dev libc++1-15 libc++abi-15-dev libc++abi1-15 libclang-rt-15-dev
|
|
|
|
|
+ - name: Coverage Test
|
|
|
|
|
+ run: |
|
|
|
|
|
+ python3 preprocess.py
|
|
|
|
|
+ bash run_tests.sh
|
|
|
|
|
+ - uses: actions/upload-artifact@v3
|
|
|
|
|
+ with:
|
|
|
|
|
+ name: coverage
|
|
|
|
|
+ path: .coverage
|
|
|
- name: Compiling
|
|
- name: Compiling
|
|
|
run: |
|
|
run: |
|
|
|
- sudo apt install -y libc++-15-dev libc++1-15 libc++abi-15-dev libc++abi1-15
|
|
|
|
|
python3 build.py linux
|
|
python3 build.py linux
|
|
|
python3 build.py linux -lib
|
|
python3 build.py linux -lib
|
|
|
python3 scripts/run_tests.py
|
|
python3 scripts/run_tests.py
|