diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-03 01:18:06 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-03 19:55:09 +0200 |
commit | 57656d7fe467af8a74a6df0abb1814411e3efd40 (patch) | |
tree | adcd9c672a869e5eabbffab1a2744de1b78336a6 | |
parent | 8a7732f2a59742aa35d1447c5bac237ed5f885ef (diff) |
CI and tarball/SDK support
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .github/workflows/build.yml | 51 | ||||
-rw-r--r-- | .gitlab-ci.yml | 39 | ||||
-rw-r--r-- | README.md | 7 | ||||
-rwxr-xr-x | mingw-w64-build | 2 |
4 files changed, 96 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e5b1825 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,51 @@ +name: Build +on: + push: + branches: + - main + pull_request: + branches: + - main + types: [opened, synchronize, reopened] + release: + types: [created] + schedule: + - cron: "0 13 * * 1" + +jobs: + test: + name: ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: ["ubuntu-latest", "ubuntu-18.04"] + include: + - compiler: "default-cc" + os: "ubuntu-latest" + - compiler: "gcc-7" + os: "ubuntu-latest" + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Install Ubuntu Prerequisites + if: startsWith(matrix.os, 'ubuntu') + run: | + sudo apt-get update + sudo apt-get install autoconf automake cmake libtool pkg-config gettext flex bison + sudo apt-get install ${{ matrix.compiler }} lcov + - name: Build + run: | + ./mingw-w64-build --jobs 8 --keep-artifacts --tarball ./mingw-w64-toolchain.tbz2 i686 x86_64 + - name: SHA512 + run: | + sha512sum -b ./mingw-w64-toolchain.tbz2 >./mingw-w64-toolchain.tbz2.sha512 + - uses: actions/upload-artifact@v2 + with: + name: mingw-w64-toolchain + path: | + ./mingw-w64-toolchain.tbz2 + ./mingw-w64-toolchain.tbz2.sha512 + retention-days: 7 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..947c888 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,39 @@ +image: debian:stable + +stages: + - build + +before_script: + - export DEBIAN_FRONTEND=noninteractive + - apt-get update -qq + - > + apt-get install -y -qq \ + coreutils wget tar gzip bzip2 patch cmake make binutils gcc g++ autoconf automake flex bison texinfo \ + curl xz-utils build-essential git + +build-again: + script: + - ./mingw-w64-build --jobs 8 --keep-artifacts --tarball ./x86_64-w64-mingw32-toolchain.tbz2 x86_64 + - sha512sum -b ./x86_64-w64-mingw32-toolchain.tbz2 >./x86_64-w64-mingw32-toolchain.tbz2.sha512 + artifacts: + expire_in: 1 week + paths: + - ./x86_64-w64-mingw32-toolchain.tbz2 + - ./x86_64-w64-mingw32-toolchain.tbz2.sha512 + stage: build + only: + - main + when: manual + +build: + script: + - ./mingw-w64-build --jobs 8 --keep-artifacts --tarball ./x86_64-w64-mingw32-toolchain.tbz2 x86_64 + - sha512sum -b ./x86_64-w64-mingw32-toolchain.tbz2 >./x86_64-w64-mingw32-toolchain.tbz2.sha512 + artifacts: + expire_in: 1 week + paths: + - ./x86_64-w64-mingw32-toolchain.tbz2 + - ./x86_64-w64-mingw32-toolchain.tbz2.sha512 + stage: build + only: + - main @@ -1,6 +1,9 @@ # mingw-w64-build-ng [Zeranoe](https://github.com/Zeranoe/mingw-w64-build)s build script with some extensions rejected by the upstream. +[](https://github.com/utoni/mingw-w64-build-ng/actions/workflows/build.yml) +[](https://gitlab.com/utoni/mingw-w64-build-ng/-/pipelines) + # mingw-w64-build mingw-w64-build is a Bash script to build a [MinGW-w64](https://mingw-w64.org) cross compiler for i686 (Win32) and x86_64 (Win64). It will build a fully static @@ -13,10 +16,10 @@ files. * [GCC](https://gcc.gnu.org/) releases/gcc-12 ## Default Prefix -`$HOME/.zeranoe/mingw-w64/i686` and `$HOME/.zeranoe/mingw-w64/x86_64` are the +`$HOME/.mingw-w64-build-ng/i686` and `$HOME/.mingw-w64-build-ng/x86_64` are the default install locations, but this location can be modified with the `--prefix` option. To ensure the new compilers are available system-wide, add -`$HOME/.zeranoe/mingw-w64/<arch>/bin` to the `$PATH`. +`$HOME/.mingw-w64-build-ng/<arch>/bin` to the `$PATH`. ## Platforms mingw-w64-build should run on Ubuntu, Cygwin, macOS (with Homebrew), and other diff --git a/mingw-w64-build b/mingw-w64-build index cf94aa5..af833a8 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -61,7 +61,7 @@ Options: --mingw-w64-branch <branch> NOT RECOMMENDED - set MinGW-w64 branch (default: $MINGW_W64_BRANCH) --force-git NOT RECOMMENDED - force git clone (default: disabled) --linked-runtime <runtime> set MinGW Linked Runtime (default: $LINKED_RUNTIME) - --tarball <path> generate a toolchain tarball + --tarball <path> generate a toolchain tarball archive (bzip2 compressed) EOF } |