Compare commits

...

13 Commits

Author SHA1 Message Date
45be58ca40 hop
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2025-12-07 16:43:10 +01:00
55d4ce5a8e update 2025-12-07 16:42:13 +01:00
81ab4fd130 maybe
Some checks failed
Linux arm64 / Build (push) Failing after 5s
2025-12-07 16:35:40 +01:00
fafa136ab2 dev
Some checks failed
Linux arm64 / Build (push) Failing after 6s
2025-12-07 16:34:46 +01:00
f127b57180 debug
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2025-12-07 16:33:47 +01:00
8591ac29ba pas besoin lol
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2025-12-07 15:59:48 +01:00
a6b2caaded install python before
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2025-12-07 15:58:51 +01:00
46b2915516 bro
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2025-12-07 15:51:14 +01:00
b9aaf0b6d9 install python before
Some checks failed
Linux arm64 / Build (push) Failing after 12s
2025-12-07 15:50:31 +01:00
2671283d53 better
Some checks failed
Linux arm64 / Build (push) Failing after 9m31s
2025-12-07 15:38:51 +01:00
f7f98f3acb gg
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2025-12-07 15:37:34 +01:00
e9c9d94dd1 ff
Some checks failed
Linux arm64 / Build (push) Failing after 12s
2025-12-07 15:37:00 +01:00
93e92dab0a test ci 2025-12-07 15:31:02 +01:00
2 changed files with 48 additions and 0 deletions

41
.github/workflows/ubuntu.yml vendored Normal file
View File

@@ -0,0 +1,41 @@
name: Linux arm64
run-name: Build And Test
on: [push]
env:
XMAKE_ROOT: y
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Prepare XMake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
actions-cache-folder: '.xmake-cache'
actions-cache-key: 'ubuntu'
- name: Xmake config
run: |
sudo apt update
sudo apt install python3-dev -y
xmake f -p linux -vDy
- name: Build wheel
run: |
xrepo env python -m venv .venv
source .venv/bin/activate
pip install build
python -m build -w
- name: Install wheel
run: pip install dist/*
- name: Test
run: python example_add.py

7
example_add.py Normal file
View File

@@ -0,0 +1,7 @@
import example
print("Checking add ...")
assert(example.add(42, 69) == 111)
print("Done !")