nibylandia/.forgejo/workflows/ci.yml

29 lines
733 B
YAML
Raw Normal View History

name: CI
on:
push:
branches: [main]
jobs:
x86_64-linux:
if: |
!contains(github.event.head_commit.message, '[skip-ci arm64]')
2024-03-26 07:38:11 +00:00
&& !contains(github.event.head_commit.message, '[skip-ci]')
2024-02-25 19:23:48 +00:00
runs-on: self-hosted-x86_64-linux
steps:
- name: repository checkout
uses: actions/checkout@v4
- name: build hosts configuration
run: ./.ci.sh
2024-02-25 19:23:48 +00:00
aarch64-linux:
if: |
!contains(github.event.head_commit.message, '[skip-ci arm64]')
2024-03-26 07:38:11 +00:00
&& !contains(github.event.head_commit.message, '[skip-ci]')
2024-02-25 19:23:48 +00:00
runs-on: self-hosted-aarch64-linux
steps:
- name: repository checkout
uses: actions/checkout@v4
- name: build hosts configuration
run: ./.ci.sh