Skip to content

Version up and updated ChangeLog. #102

Version up and updated ChangeLog.

Version up and updated ChangeLog. #102

Workflow file for this run

name: Linux MinGW
on: [push, pull_request]
env:
NSIS_VERSION: 3.10
DOCKERIMG: archlinux:latest
ARCH_ROOT_URL: https://mirror.rackspace.com/archlinux
NJOBS: 4
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 10
fail-fast: false
matrix:
include:
- compiler: gcc
- compiler: clang
steps:
- uses: actions/checkout@v2
- name: Build
uses: addnab/docker-run-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: gcr.io
image: ${{ env.DOCKERIMG }}
options: >-
-v ${{ github.workspace }}:/sources
-e NSIS_VERSION=${{ env.NSIS_VERSION }}
-e TARGET_ARCH=${{ matrix.target_arch }}
-e COMPILER=${{ matrix.compiler }}
-e DOCKERIMG=${{ env.DOCKERIMG }}
-e ARCH_ROOT_URL=${{ env.ARCH_ROOT_URL }}
-e NJOBS=${{ env.NJOBS }}
run: |
cd /sources
echo
echo Install dependencies
echo
chmod +x ports/ci/linux-mingw/install_deps.sh
./ports/ci/linux-mingw/install_deps.sh
echo
echo Release Build
echo
chmod +x ports/ci/linux-mingw/build.sh
./ports/ci/linux-mingw/build.sh
echo
echo Release Deploy
echo
chmod +x ports/ci/linux-mingw/deploy.sh
./ports/ci/linux-mingw/deploy.sh