Skip to content

Commit

Permalink
fix linux workflow 3rd try
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Olt committed Sep 30, 2024
1 parent 5b4f74f commit d66e3c3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-plugins-linux-glibc-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
run: |
cd ~
gh release list -L 100000 --repo '${{ github.repository }}' | grep -m1 "compiler-*" | cut -f3 | xargs -i gh release download {} --repo '${{ github.repository }}' --pattern 'crosstool-ng-compiler-linux-x86_64*'
gh release list -L 100000 --repo '${{ github.repository }}' | grep -m1 "compiler-.*" | cut -f3 | xargs -i gh release download {} --repo '${{ github.repository }}' --pattern 'crosstool-ng-compiler-linux-x86_64*'
tar xzf crosstool-ng-compiler-linux-x86_64.tar.gz
export PATH="${HOME}/x-tools/x86_64-unknown-linux-gnu/bin:$PATH"
pip3 install meson ninja pyzstd click
cd ${{ github.workspace }}
gh release list -L 100000 --repo '${{ github.repository }}' | grep -m1 "vapoursynth-*" | cut -f3 | xargs -i gh release download {} --repo '${{ github.repository }}' --pattern 'vapoursynth-build-linux-x86_64*'
gh release list -L 100000 --repo '${{ github.repository }}' | grep -m1 "vapoursynth-.*" | cut -f3 | xargs -i gh release download {} --repo '${{ github.repository }}' --pattern 'vapoursynth-build-linux-x86_64*'
tar xzf vapoursynth-build-linux-x86_64.tar.gz
export PYTHONPATH=${{ github.workspace }}/workspace/lib/python3.10/site-packages
./github-build.py '${{ github.repository }}'
Expand Down
4 changes: 3 additions & 1 deletion plugins/bm3d.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@
"tests": [
{
"name": "test-filter-0",
"create_files": [ "test-filter-0.vpy" ],
"create_files": [
"test-filter-0.vpy"
],
"commands": [
{
"cwd": "{TESTDIR}",
Expand Down
4 changes: 1 addition & 3 deletions plugins/cas.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@
"tests": [
{
"name": "test-filter-0",
"create_files": [
"test-filter-0.vpy"
],
"create_files": [ "test-filter-0.vpy" ],
"commands": [
{
"cwd": "{TESTDIR}",
Expand Down
4 changes: 3 additions & 1 deletion plugins/depan.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@
"tests": [
{
"name": "test-filter-0",
"create_files": [ "test-filter-0.vpy" ],
"create_files": [
"test-filter-0.vpy"
],
"commands": [
{
"cwd": "{TESTDIR}",
Expand Down
4 changes: 1 addition & 3 deletions plugins/motionmask.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
"tests": [
{
"name": "test-filter-0",
"create_files": [
"test-filter-0.vpy"
],
"create_files": [ "test-filter-0.vpy" ],
"commands": [
{
"cwd": "{TESTDIR}",
Expand Down

0 comments on commit d66e3c3

Please sign in to comment.