From 26ae047400909cb5cb196869bf99fb44af4cdcdf Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Fri, 25 Jun 2021 12:48:53 -0300 Subject: [PATCH] Trying to fix Github actions. --- .github/workflows/linux-mingw.yml | 16 ++++++++-------- .github/workflows/mac.yml | 16 ++++++++-------- .github/workflows/windows-msys.yml | 6 +++--- .github/workflows/windows-vs.yml | 6 +++--- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/linux-mingw.yml b/.github/workflows/linux-mingw.yml index 66ec822..8b9ecb2 100644 --- a/.github/workflows/linux-mingw.yml +++ b/.github/workflows/linux-mingw.yml @@ -15,17 +15,17 @@ jobs: - uses: actions/checkout@v2 - name: Install dependencies run: | - chmod +x ports/ci/travis/install_deps.sh - ports/ci/travis/install_deps.sh + chmod +x ports/ci/linux-mingw/install_deps.sh + ./ports/ci/linux-mingw/install_deps.sh - name: Build run: | - chmod +x ports/ci/travis/build.sh - ports/ci/travis/build.sh + chmod +x ports/ci/linux-mingw/build.sh + ./ports/ci/linux-mingw/build.sh - name: Deploy run: | - chmod +x ports/ci/travis/deploy.sh - ports/ci/travis/deploy.sh + chmod +x ports/ci/linux-mingw/deploy.sh + ./ports/ci/linux-mingw/deploy.sh - name: Upload run: | - chmod +x ports/ci/travis/upload.sh - ports/ci/travis/upload.sh + chmod +x ports/ci/linux-mingw/upload.sh + ./ports/ci/linux-mingw/upload.sh diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index d46a72c..5ff3955 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -12,17 +12,17 @@ jobs: - uses: actions/checkout@v2 - name: Install dependencies run: | - chmod +x ports/ci/travis/install_deps.sh - ports/ci/travis/install_deps.sh + chmod +x ports/ci/mac/install_deps.sh + ./ports/ci/mac/install_deps.sh - name: Build run: | - chmod +x ports/ci/travis/build.sh - ports/ci/travis/build.sh + chmod +x ports/ci/mac/build.sh + ./ports/ci/mac/build.sh - name: Deploy run: | - chmod +x ports/ci/travis/deploy.sh - ports/ci/travis/deploy.sh + chmod +x ports/ci/mac/deploy.sh + ./ports/ci/mac/deploy.sh - name: Upload run: | - chmod +x ports/ci/travis/upload.sh - ports/ci/travis/upload.sh + chmod +x ports/ci/mac/upload.sh + ./ports/ci/mac/upload.sh diff --git a/.github/workflows/windows-msys.yml b/.github/workflows/windows-msys.yml index c2e6458..6e07a30 100644 --- a/.github/workflows/windows-msys.yml +++ b/.github/workflows/windows-msys.yml @@ -25,8 +25,8 @@ jobs: mingw-w64-x86_64-pkgconf mingw-w64-i686-pkgconf - name: Build - run: ports/ci/appveyor/build.sh + run: ./ports/ci/windows-msys/build.sh - name: Deploy - run: ports/ci/appveyor/deploy.sh + run: ./ports/ci/windows-msys/deploy.sh - name: Upload - run: ports/ci/appveyor/upload.sh + run: ./ports/ci/windows-msys/upload.sh diff --git a/.github/workflows/windows-vs.yml b/.github/workflows/windows-vs.yml index 6059efd..766cd38 100644 --- a/.github/workflows/windows-vs.yml +++ b/.github/workflows/windows-vs.yml @@ -15,8 +15,8 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: ports\ci\appveyor\build.bat + run: ports\ci\windows-vs\build.bat - name: Deploy - run: ports\ci\appveyor\deploy.bat + run: ports\ci\windows-vs\deploy.bat - name: Upload - run: ports\ci\appveyor\upload.bat + run: ports\ci\windows-vs\upload.bat