Update .gitea/workflows/ci_meson.yaml
Some checks failed
Ubuntu Cross to Win64 / Cross Compile with ming64 (1.4.0, ubuntu-latest) (push) Failing after 1m4s
Some checks failed
Ubuntu Cross to Win64 / Cross Compile with ming64 (1.4.0, ubuntu-latest) (push) Failing after 1m4s
This commit is contained in:
parent
9c73308214
commit
34d0efe70b
@ -1,4 +1,4 @@
|
|||||||
name: CI Meson
|
name: Ubuntu Cross to Win64
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -17,13 +17,12 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build on ${{ matrix.os }} with Meson v${{ matrix.meson_version }} and ${{ matrix.comp }}
|
name: Cross Compile with ming64
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, ubuntu-22.04, ubuntu-20.04]
|
os: [ubuntu-latest]
|
||||||
meson_version: ["1.4.0"]
|
meson_version: ["1.4.0"]
|
||||||
comp: [gcc, clang]
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: https://gitea.com/ScMi1/checkout@v1
|
uses: https://gitea.com/ScMi1/checkout@v1
|
||||||
@ -36,13 +35,11 @@ jobs:
|
|||||||
- name: Install APT Dependencies
|
- name: Install APT Dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update -y
|
apt update -y
|
||||||
apt install -y cmake clang build-essential libwayland-dev libxkbcommon-dev xorg-dev
|
apt install -y cmake clang build-essential libwayland-dev libxkbcommon-dev xorg-dev mingw-w64 wine-stable
|
||||||
- name: Configure Project
|
- name: Configure Project
|
||||||
run: |
|
run: |
|
||||||
./scripts/download_dxc.sh
|
./scripts/download_dxc.sh
|
||||||
meson setup build
|
meson setup --cross-file scripts/x86_64-w64-mingw32.txt build
|
||||||
env:
|
|
||||||
CC: ${{ matrix.comp }}
|
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: meson compile -C build
|
run: meson compile -C build
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
|
Loading…
Reference in New Issue
Block a user