From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.ffmpeg.org (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTPS id 1EABD44B4A for ; Mon, 21 Jul 2025 22:17:48 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTP id 4278A68CAF5; Tue, 22 Jul 2025 01:17:44 +0300 (EEST) Received: from relay15.mail.gandi.net (relay15.mail.gandi.net [217.70.178.235]) by ffbox0-bg.ffmpeg.org (Postfix) with ESMTPS id A234B68C3BE for ; Tue, 22 Jul 2025 01:17:37 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id E5FB64317C for ; Mon, 21 Jul 2025 22:17:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1753136257; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=fqa0blyJlfxx/ibxqF0OX5ED6hdi48zLerYix0fgObY=; b=L5wsIkPuy+W2V1PMSMizFj3A95geSgH0ssS5p41BI4cP1vFthNdu6DiY7ax6LwtWWzsjix xIymmqXoPPkV8CQgiUACiTg+2bvZU7Fi6qVNePa3cc/9c//lgZ9erWjxxZXeEY3m7MOzS0 jYjSTpDUXy9JPvmWTe8p2toS1QdrLxiQGjByC6B5SWBRbRmOQVtzJ0GWaBFF1iL/jnNWJ7 B5EhpMh6jKNN3udSt88f7WcNq/e9l3ft96lU6nFuzrpIaNSASVK1Md7VkdaWr/sfgsBPaB vXGCUe3J987X+2qHWiHUCA7bA9RqblyVE0LuNGIh9AumNymw+TKvKTD/EkLy0w== Date: Tue, 22 Jul 2025 00:17:35 +0200 From: Michael Niedermayer To: FFmpeg development discussions and patches Message-ID: <20250721221735.GB29660@pb2> References: <20250721163710.888-1-timo@rothenpieler.org> MIME-Version: 1.0 In-Reply-To: <20250721163710.888-1-timo@rothenpieler.org> X-GND-State: clean X-GND-Score: -70 X-GND-Cause: gggruggvucftvghtrhhoucdtuddrgeeffedrtdefgdejfedvhecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfitefpfffkpdcuggftfghnshhusghstghrihgsvgenuceurghilhhouhhtmecufedtudenucesvcftvggtihhpihgvnhhtshculddquddttddmnegfrhhlucfvnfffucdlfedtmdenucfjughrpeffhffvuffkfhggtggujgesghdtreertddtvdenucfhrhhomhepofhitghhrggvlhcupfhivgguvghrmhgrhigvrhcuoehmihgthhgrvghlsehnihgvuggvrhhmrgihvghrrdgttgeqnecuggftrfgrthhtvghrnhepieegkedtjeduffejhfetgeejtdegteetgfegtdfhjefgvefhteegkeejtddvhfevnecukfhppeeguddrieeirdeihedrudejieenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeeguddrieeirdeihedrudejiedphhgvlhhopehlohgtrghlhhhoshhtpdhmrghilhhfrhhomhepmhhitghhrggvlhesnhhivgguvghrmhgrhigvrhdrtggtpdhnsggprhgtphhtthhopedupdhrtghpthhtohepfhhfmhhpvghgqdguvghvvghlsehffhhmphgvghdrohhrgh Subject: Re: [FFmpeg-devel] [PATCH] forgejo/workflows: add initial rudimentary CI X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: multipart/mixed; boundary="===============9011558654003476150==" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --===============9011558654003476150== Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="q0cD3EiRewNf/0Cp" Content-Disposition: inline --q0cD3EiRewNf/0Cp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jul 21, 2025 at 06:37:06PM +0200, Timo Rothenpieler wrote: > It runs basic fate with no special dependencies enabled on x86_64 and > aarch64. > --- > .forgejo/workflows/test.yml | 39 +++++++++++++++++++++++++++++++++++++ > .gitignore | 1 + > 2 files changed, 40 insertions(+) > create mode 100644 .forgejo/workflows/test.yml >=20 > diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml > new file mode 100644 > index 0000000000..f9e032b78c > --- /dev/null > +++ b/.forgejo/workflows/test.yml > @@ -0,0 +1,39 @@ > +on: > + push: > + branches: > + - master > + pull_request: > + > +jobs: > + run_fate: > + strategy: > + fail-fast: false > + matrix: > + runner: [linux-amd64,linux-aarch64] > + runs-on: ${{ matrix.runner }} > + steps: > + - name: Checkout > + uses: actions/checkout@v4 > + - name: Configure > + run: ./configure If you want to maximize coverage and maximize speed: dash ./configure --enable-gpl (--enable-nonfree) --enable-version3 --cc=3D'ccache gcc' (or clang) --assert-level=3D2 --tempprefix=3Dsomebasepaththatcanbeusedforcreatingtemporaryfiles --enable-whatever-is-insalled no more comments from me, patch can be applied once everyone is happy thx [...] --=20 Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB It is dangerous to be right in matters on which the established authorities are wrong. -- Voltaire --q0cD3EiRewNf/0Cp Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABEKAB0WIQSf8hKLFH72cwut8TNhHseHBAsPqwUCaH68ewAKCRBhHseHBAsP qw1PAJwOr28bt3HKDFWqD+OGG4lHq8vrpACgihoGjzmNr+5YIgR3DQ7t2yUJRoI= =SWV7 -----END PGP SIGNATURE----- --q0cD3EiRewNf/0Cp-- --===============9011558654003476150== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". --===============9011558654003476150==--