Milestone 5: deliver embedded RDP sessions and lifecycle hardening
This commit is contained in:
35
third_party/FreeRDP/.github/workflows/mingw.yml
vendored
Normal file
35
third_party/FreeRDP/.github/workflows/mingw.yml
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
name: mingw-builder
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches: [ master, stable* ]
|
||||
schedule:
|
||||
- cron: '30 5 * * SUN'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Run mingw build on ubuntu-latest"
|
||||
steps:
|
||||
- name: "Check out source"
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Prepare environment"
|
||||
run: |
|
||||
sudo apt-get update -q -y
|
||||
sudo apt-get install -q -y \
|
||||
git \
|
||||
nasm \
|
||||
meson \
|
||||
cmake \
|
||||
ninja-build \
|
||||
mingw-w64 \
|
||||
mingw-w64-tools \
|
||||
binutils-mingw-w64
|
||||
|
||||
- name: "Run mingw [shared] build..."
|
||||
run: |
|
||||
./scripts/mingw.sh
|
||||
|
||||
- name: "Run mingw [static] build..."
|
||||
run: |
|
||||
./scripts/mingw.sh -c -s --clean-first
|
||||
Reference in New Issue
Block a user