From f577a0fb942bf26fcd6379daaa291d50c2929d9a Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 21 Sep 2024 14:45:38 -0400 Subject: [PATCH] First attempt to use new CI runner. --- .forgejo/workflows/compile.yaml | 18 ++++++++++++++++++ .gitea/workflows/compile.yaml | 25 ------------------------- 2 files changed, 18 insertions(+), 25 deletions(-) create mode 100644 .forgejo/workflows/compile.yaml delete mode 100644 .gitea/workflows/compile.yaml diff --git a/.forgejo/workflows/compile.yaml b/.forgejo/workflows/compile.yaml new file mode 100644 index 0000000..3c3cef3 --- /dev/null +++ b/.forgejo/workflows/compile.yaml @@ -0,0 +1,18 @@ +name: Compile Cytoplasm +run-name: Compile Cytoplasm on ${{ forgejo.actor }} +on: [push] + +jobs: + "Compile Cytoplasm": + strategy: + matrix: + os: [alpine] + arch: [aarch64] + runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"] + steps: + - name: Check out repository + uses: actions/checkout@v3 + - name: Configure Cytoplasm + run: ./configure + - name: Build Cytoplasm + run: make diff --git a/.gitea/workflows/compile.yaml b/.gitea/workflows/compile.yaml deleted file mode 100644 index 1185758..0000000 --- a/.gitea/workflows/compile.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Compile Cytoplasm -run-name: Compile Cytoplasm on ${{ gitea.actor }} -on: [push] - -jobs: - "Compile Cytoplasm": - strategy: - matrix: - os: [debian-v12.4, alpine-v3.19, openbsd-v7.4, freebsd-v14.0, netbsd-v9.3] - arch: [x86, x86_64] - exclude: - # 32-bit OpenBSD does not behave well in QEMU. Even when using - # QEMU to emulate i386, it utilizes 100% of its CPU core and is - # still extremely sluggish. Thus, we don't have a working 32-bit - # OpenBSD runner, so exclude it from the matrix configuration. - - os: openbsd-v7.4 - arch: x86 - runs-on: ["${{ matrix.os }}", "${{ matrix.arch }}"] - steps: - - name: Check out repository - uses: actions/checkout@v3 - - name: Configure Cytoplasm - run: ./configure - - name: Build Cytoplasm - run: make