From 30f41c02aec763d32e62351452da9ef582bc3472 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Fri, 6 Mar 2026 13:30:59 -0800 Subject: Move contrib libraries to contrib repo --- contrib/SDL-3.2.8/.github/workflows/build.yml | 48 --------------------------- 1 file changed, 48 deletions(-) delete mode 100644 contrib/SDL-3.2.8/.github/workflows/build.yml (limited to 'contrib/SDL-3.2.8/.github/workflows/build.yml') diff --git a/contrib/SDL-3.2.8/.github/workflows/build.yml b/contrib/SDL-3.2.8/.github/workflows/build.yml deleted file mode 100644 index 09652e0..0000000 --- a/contrib/SDL-3.2.8/.github/workflows/build.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: 'Build (All)' - -on: [push, pull_request] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} - cancel-in-progress: true - -jobs: - controller: - name: 'Create test plan' - runs-on: 'ubuntu-latest' - outputs: - platforms-level1: ${{ steps.plan.outputs.platforms-level1 }} - platforms-others: ${{ steps.plan.outputs.platforms-others }} - steps: - - uses: actions/setup-python@main - with: - python-version: 3.x - - uses: actions/checkout@main - with: - sparse-checkout: '.github/workflows/create-test-plan.py' - - name: 'Create plan' - id: plan - run: | - # Adding [sdl-ci-filter GLOB] to the commit message will limit the jobs - # e.g. [sdl-ci-filter msvc-*] - EOF=$(openssl rand -hex 32) - cat >/tmp/commit_message.txt <<$EOF - ${{ github.event.head_commit.message }} - $EOF - - python .github/workflows/create-test-plan.py \ - --github-variable-prefix platforms \ - --github-ci \ - --verbose \ - ${{ (github.repository_owner != 'libsdl-org' && '--no-artifact') || '' }} \ - --commit-message-file /tmp/commit_message.txt - level1: - needs: [controller] - uses: './.github/workflows/generic.yml' - with: - platforms: ${{ needs.controller.outputs.platforms-level1 }} - level2: - needs: [controller, level1] - uses: './.github/workflows/generic.yml' - with: - platforms: ${{ needs.controller.outputs.platforms-others }} -- cgit v1.2.3