Remove some old stuff from ci workflows

This commit is contained in:
Jeremy 2023-09-01 17:55:09 -04:00
parent 976428b8e5
commit ac95720789
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4
2 changed files with 0 additions and 21 deletions

View File

@ -11,16 +11,6 @@ jobs:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt install gcc-10 g++-10 libgcc-10-dev
- name: dependencies
run: |
git clone https://github.com/jeremy-rifkin/libdwarf-code.git
cd libdwarf-code
git checkout b07d7201fd38a7dd8e6914ec4da120ef60dde262
mkdir build && cd build
cmake .. -DBUILD_SHARED_LIBS=On -DLIBDWARF_BUILD_SHARED=On
make -j
sudo make install VERBOSE=1
sudo find /usr -name "libdwarf.h"
- name: build
run: |
pip3 install colorama
@ -29,15 +19,6 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- name: dependencies
run: |
git clone https://github.com/jeremy-rifkin/libdwarf-code.git
cd libdwarf-code
git checkout b07d7201fd38a7dd8e6914ec4da120ef60dde262
mkdir build && cd build
cmake .. -DBUILD_SHARED_LIBS=On -DLIBDWARF_BUILD_SHARED=On
make -j
sudo make install
- name: build
run: |
pip3 install colorama

View File

@ -57,7 +57,6 @@ def build(matrix):
f"-D{matrix['symbols']}=On",
f"-D{matrix['demangle']}=On",
"-DCPPTRACE_BACKTRACE_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/include/backtrace.h",
"-DCPPTRACE_USE_SYSTEM_LIBDWARF=On"
)
if succeeded:
run_command("make", "-j", "VERBOSE=1")
@ -102,7 +101,6 @@ def build_full_or_auto(matrix):
f"-DCMAKE_CXX_COMPILER={matrix['compiler']}",
f"-DCMAKE_CXX_STANDARD={matrix['std']}",
f"-DCPPTRACE_BACKTRACE_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/include/backtrace.h",
"-DCPPTRACE_USE_SYSTEM_LIBDWARF=On"
]
if matrix["config"] != "":
args.append(f"{matrix['config']}")