Trying to fix Github actions.
This commit is contained in:
parent
983dab3bb6
commit
26ae047400
4 changed files with 22 additions and 22 deletions
16
.github/workflows/linux-mingw.yml
vendored
16
.github/workflows/linux-mingw.yml
vendored
|
@ -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
|
||||
|
|
16
.github/workflows/mac.yml
vendored
16
.github/workflows/mac.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/windows-msys.yml
vendored
6
.github/workflows/windows-msys.yml
vendored
|
@ -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
|
||||
|
|
6
.github/workflows/windows-vs.yml
vendored
6
.github/workflows/windows-vs.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue