Files
wren/.gitea/workflows/ci.yml
T
retoor a7b5b92c62
CI / build-linux (push) Failing after 1m6s
Update.
2026-01-26 13:01:58 +01:00

36 lines
730 B
YAML

# retoor <retoor@molodetz.nl>
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libssl-dev python3
- name: Build
run: |
cd projects/make && make -f wren_cli.make config=release_64bit -j$(nproc)
- name: Run tests
run: |
python3 util/test.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: wren-cli-linux-release_64bit
path: bin/wren_cli*