mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-17 03:25:45 +01:00
update CI to use the newer makefile system
This commit is contained in:
18
.github/workflows/ci-bin.yaml
vendored
18
.github/workflows/ci-bin.yaml
vendored
@@ -13,10 +13,18 @@ jobs:
|
||||
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
strategy:
|
||||
matrix:
|
||||
arch:
|
||||
- linux-x86_64
|
||||
- win-x86_64
|
||||
include:
|
||||
- kernel: linux
|
||||
march: x86_64
|
||||
cc: x86_64-linux-gnu-gcc
|
||||
- kernel: mingw
|
||||
march: x86_64
|
||||
cc: x86_64-w64-mingw32-gcc
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: make compile ARCH=${{matrix.arch}} -j
|
||||
|
||||
- name: compile ${{matrix.march}}-${{matrix.kernel}}
|
||||
run: make compile MARCH=${{matrix.march}} KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} -j
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{matrix.march}}-${{matrix.kernel}}-rel
|
||||
path: obj/
|
||||
|
||||
2
.github/workflows/ci-lint.yaml
vendored
2
.github/workflows/ci-lint.yaml
vendored
@@ -7,7 +7,7 @@ on:
|
||||
branches:
|
||||
- '**'
|
||||
jobs:
|
||||
compile:
|
||||
exec-lint:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
|
||||
26
.github/workflows/ci-tests.yaml
vendored
26
.github/workflows/ci-tests.yaml
vendored
@@ -1,11 +1,10 @@
|
||||
name: tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
workflow_run:
|
||||
workflows:
|
||||
- bin
|
||||
types:
|
||||
- completed
|
||||
jobs:
|
||||
execute-tests:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -13,9 +12,16 @@ jobs:
|
||||
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
strategy:
|
||||
matrix:
|
||||
arch:
|
||||
- linux-x86_64
|
||||
# WARN: not testing win-x86_64... Probably a good idea to do that
|
||||
include:
|
||||
- kernel: linux
|
||||
march: x86_64
|
||||
cc: x86_64-linux-gnu-gcc
|
||||
# WARN: not testing win-x86_64... Probably a good idea to do that
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: make run-test ARCH=${{matrix.arch}} -j
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ${{matrix.march}}-${{matrix.kernel}}-rel
|
||||
path: obj/
|
||||
- name: execute tests for ${{matrix.march}}-${{matrix.kernel}}
|
||||
run: make DEBUG=test run MARCH=${{matrix.march}} KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} -j
|
||||
|
||||
20
.github/workflows/release.yaml
vendored
20
.github/workflows/release.yaml
vendored
@@ -10,24 +10,28 @@ on:
|
||||
description: the tag to release for
|
||||
default: ""
|
||||
jobs:
|
||||
compile:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/thepigeongenerator/mcaselector-lite:latest
|
||||
needs: install-deps
|
||||
strategy:
|
||||
matrix:
|
||||
arch:
|
||||
- linux-x86_64
|
||||
- win-x86_64
|
||||
include:
|
||||
- kernel: linux
|
||||
march: x86_64
|
||||
cc: x86_64-linux-gnu-gcc
|
||||
- kernel: mingw
|
||||
march: x86_64
|
||||
cc: x86_64-w64-mingw32-gcc
|
||||
env:
|
||||
OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.arch}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip
|
||||
OUT: ${{github.workspace}}/mcaselector-lite-${{matrix.march}}-${{matrix.kernel}}-${{github.event.release.tag_name || github.event.inputs.release_tag}}.zip
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: make compile ARCH=${{matrix.arch}} -j
|
||||
- name: compile ${{matrix.march}}-${{matrix.kernel}}
|
||||
run: make compile MARCH=${{matrix.march}} KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} -j
|
||||
- name: compress binary information
|
||||
run: |
|
||||
cd "${{github.workspace}}/bin/${{matrix.arch}}/rel/"
|
||||
cd "${{github.workspace}}/bin/${{matrix.march}}-${{matrix.kernel}}/${{github.event.release.tag_name || github.event.inputs.release_tag}}/rel/" || exit 1
|
||||
zip -rv "${{env.OUT}}" *
|
||||
cd -
|
||||
# upload to the release
|
||||
|
||||
Reference in New Issue
Block a user