Specify gitea server url for checkout
This commit is contained in:
parent
6bd71778d2
commit
654192c258
@ -16,7 +16,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build on ${{ matrix.os }}
|
name: Build on ${{ matrix.os }} with Meson v${{ matrix.meson_version }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@ -25,6 +25,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
github-server-url: 'https://libneat.hopto.org/git/'
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
@ -39,4 +41,9 @@ jobs:
|
|||||||
run: meson compile -C build
|
run: meson compile -C build
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: meson test -C build/ -v
|
run: meson test -C build/ -v
|
||||||
|
- name: Upload Test Log
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
if: failure()
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.os }}_Meson_Testlog
|
||||||
|
path: build/meson-logs/testlog.txt
|
||||||
|
Loading…
Reference in New Issue
Block a user