Skip to content

Commit

Permalink
Merge pull request #29 from DenizUgur/dev
Browse files Browse the repository at this point in the history
Miscellaneous fixes
  • Loading branch information
podborski authored Aug 22, 2023
2 parents 3126a6f + 86d4957 commit 62936f5
Show file tree
Hide file tree
Showing 17 changed files with 1,350 additions and 798 deletions.
15 changes: 0 additions & 15 deletions .github/dependabot.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", ":maintainLockFilesWeekly"],
"platformAutomerge": true,
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch",
"pin",
"digest",
"lockFileMaintenance"
],
"automerge": true,
"minimumReleaseAge": "3 days"
}
]
}
23 changes: 22 additions & 1 deletion .github/workflows/gpac.yml → .github/workflows/chores.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build MP4Box
name: Chores

on:
workflow_dispatch:
Expand All @@ -7,6 +7,7 @@ on:

jobs:
gpac:
name: Build GPAC
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -34,3 +35,23 @@ jobs:
make -j$(nproc)
mkdir -p /tmp/gpac
cp -r bin/gcc/ /tmp/gpac
lfscache:
name: Keep LFS Cache Warm
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Create LFS file list
id: lfs-id
run: |
echo "lfs-id=$(git lfs ls-files --long | cut -d ' ' -f1 | sort \
| sha256sum | cut -d ' ' -f1)" >> $GITHUB_OUTPUT
- name: LFS Cache
uses: actions/cache/restore@v3
with:
path: .git/lfs/objects
key: ${{ runner.os }}-lfs-${{ steps.lfs-id.outputs.lfs-id }}
restore-keys: ${{ runner.os }}-lfs-
Loading

0 comments on commit 62936f5

Please sign in to comment.