Skip to content
This repository was archived by the owner on Jul 20, 2024. It is now read-only.

Commit 0c9878c

Browse files
committed
First commit
0 parents  commit 0c9878c

File tree

370 files changed

+124921
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

370 files changed

+124921
-0
lines changed

.github/featured.webp

647 KB
Binary file not shown.

.github/py_osx.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/sh
2+
set -ex
3+
python $GITHUB_WORKSPACE/bindings/python/setup.py --ninja --osx-arch=arm64 \
4+
--lief-dir=/tmp/third-party/LIEF-0.13.0-Darwin/share/LIEF/cmake \
5+
--llvm-dir=/tmp/third-party/LLVM-14.0.6-Darwin/lib/cmake/llvm \
6+
build --build-temp=/tmp/arm64 bdist_wheel --skip-build \
7+
--plat-name=macosx_${MACOSX_DEPLOYMENT_TARGET}_arm64
8+

.github/workflows/linux-x86-64.yml

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
name: 'Linux x86-64'
2+
on: push
3+
4+
jobs:
5+
linux-sdk:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
with:
10+
fetch-depth: 0
11+
- name: Get Date
12+
id: get-date
13+
run: |
14+
echo "::set-output name=date::$(/bin/date -u "+%Y-%m-%d-%H;%M;%S")"
15+
shell: bash
16+
- name: ccache cache files
17+
uses: actions/cache@v3
18+
with:
19+
path: ~/.ccache
20+
key: linux-x86-64-${{ runner.os }}-${{ steps.get-date.outputs.date }}
21+
restore-keys: |
22+
linux-x86-64-${{ runner.os }}-
23+
- name: Prepare dependencies
24+
shell: bash
25+
run: |
26+
mkdir -p /tmp/third-party && cd /tmp/third-party
27+
curl -LO https://data.romainthomas.fr/icdump/LLVM-14.0.6-Linux-slim.tar.gz
28+
curl -LO https://data.romainthomas.fr/icdump/LIEF-0.13.0-Linux-x86_64.tar.gz
29+
- name: Build Python 3.8 wheel
30+
shell: bash
31+
env:
32+
PYTHON_VERSION: 38
33+
run: |
34+
docker run --rm \
35+
-e CCACHE_COMPRESS=1 \
36+
-e CCACHE_MAXSIZE=10.0G \
37+
-e CCACHE_CPP2=1 \
38+
-e CCACHE_DIR=/ccache \
39+
-e PYTHON_VERSION=$PYTHON_VERSION \
40+
-e PYTHON_BINARY=/opt/python/cp38-cp38/bin/python \
41+
-v /tmp/third-party:/third-party \
42+
-v $GITHUB_WORKSPACE:/icdump \
43+
-v $HOME/.ccache:/ccache \
44+
rh0main/icdump_manylinux_2_28_x86_64 bash /icdump/scripts/docker/compile_icdump.sh
45+
- name: Build Python 3.9 wheel
46+
shell: bash
47+
env:
48+
PYTHON_VERSION: 39
49+
run: |
50+
docker run --rm \
51+
-e CCACHE_COMPRESS=1 \
52+
-e CCACHE_MAXSIZE=10.0G \
53+
-e CCACHE_CPP2=1 \
54+
-e CCACHE_DIR=/ccache \
55+
-e PYTHON_VERSION=$PYTHON_VERSION \
56+
-e PYTHON_BINARY=/opt/python/cp39-cp39/bin/python \
57+
-v /tmp/third-party:/third-party \
58+
-v $GITHUB_WORKSPACE:/icdump \
59+
-v $HOME/.ccache:/ccache \
60+
rh0main/icdump_manylinux_2_28_x86_64 bash /icdump/scripts/docker/compile_icdump.sh
61+
- name: Build Python 3.10 wheel
62+
shell: bash
63+
env:
64+
PYTHON_VERSION: 310
65+
run: |
66+
docker run --rm \
67+
-e CCACHE_COMPRESS=1 \
68+
-e CCACHE_MAXSIZE=10.0G \
69+
-e CCACHE_CPP2=1 \
70+
-e CCACHE_DIR=/ccache \
71+
-e PYTHON_VERSION=$PYTHON_VERSION \
72+
-e PYTHON_BINARY=/opt/python/cp310-cp310/bin/python \
73+
-v /tmp/third-party:/third-party \
74+
-v $GITHUB_WORKSPACE:/icdump \
75+
-v $HOME/.ccache:/ccache \
76+
rh0main/icdump_manylinux_2_28_x86_64 bash /icdump/scripts/docker/compile_icdump.sh
77+
- name: Build Python 3.11 wheel
78+
shell: bash
79+
env:
80+
PYTHON_VERSION: 311
81+
run: |
82+
docker run --rm \
83+
-e CCACHE_COMPRESS=1 \
84+
-e CCACHE_MAXSIZE=10.0G \
85+
-e CCACHE_CPP2=1 \
86+
-e CCACHE_DIR=/ccache \
87+
-e PYTHON_VERSION=$PYTHON_VERSION \
88+
-e PYTHON_BINARY=/opt/python/cp311-cp311/bin/python \
89+
-v /tmp/third-party:/third-party \
90+
-v $GITHUB_WORKSPACE:/icdump \
91+
-v $HOME/.ccache:/ccache \
92+
rh0main/icdump_manylinux_2_28_x86_64 bash /icdump/scripts/docker/compile_icdump.sh

.github/workflows/osx.yml

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: 'macOS'
2+
on: push
3+
4+
jobs:
5+
osx-sdk:
6+
runs-on: macos-12.0
7+
strategy:
8+
matrix:
9+
python-version: ['3.10']
10+
steps:
11+
- uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 0
14+
- name: Set up Python ${{ matrix.python-version }}
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
- name: Install system dependencies
19+
run: |
20+
brew install cmake ninja ccache
21+
python -m pip install --upgrade pip setuptools wheel
22+
- name: Get Date
23+
id: get-date
24+
run: |
25+
echo "::set-output name=date::$(/bin/date -u "+%Y-%m-%d-%H;%M;%S")"
26+
shell: bash
27+
- name: Setup cache dir
28+
shell: bash
29+
run: |
30+
mkdir -p ~/.ccache
31+
- name: ccache cache files
32+
uses: actions/[email protected]
33+
with:
34+
path: ~/.ccache
35+
key: osx-${{ runner.os }}-${{ steps.get-date.outputs.date }}
36+
restore-keys: |
37+
osx-${{ runner.os }}-
38+
- name: Upgrade pip
39+
shell: bash
40+
run: |
41+
python -m pip install --upgrade pip
42+
- name: Prepare dependencies
43+
shell: bash
44+
run: |
45+
mkdir -p /tmp/third-party && cd /tmp/third-party
46+
curl -LO https://data.romainthomas.fr/icdump/LLVM-14.0.6-Darwin-slim.tar.gz
47+
curl -LO https://data.romainthomas.fr/icdump/LIEF-0.13.0-Darwin.tar.gz
48+
tar xzvf LLVM-14.0.6-Darwin-slim.tar.gz
49+
tar xzvf LIEF-0.13.0-Darwin.tar.gz
50+
- name: Build Python ${{ matrix.python-version }} wheel (arm64)
51+
shell: bash
52+
env:
53+
MACOSX_DEPLOYMENT_TARGET: "10.7"
54+
CCACHE_DIR: ~/.ccache
55+
CCACHE_MAXSIZE: 10.0G
56+
CCACHE_CPP2: 1
57+
CCACHE_COMPRESS: 1
58+
run: |
59+
bash $GITHUB_WORKSPACE/.github/py_osx.sh
60+
61+

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Authors:
2+
3+
Romain Thomas <[email protected]>

0 commit comments

Comments
 (0)