mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
commit
0b242e9fb4
50
.travis.yml
50
.travis.yml
@ -1,14 +1,44 @@
|
||||
language: cpp
|
||||
matrix:
|
||||
include:
|
||||
- os: osx
|
||||
osx_image: xcode9.2
|
||||
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
compiler: clang
|
||||
|
||||
before_install:
|
||||
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
|
||||
- sudo apt-get update -qq
|
||||
- sudo apt-get install -qq qt5-qmake qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev
|
||||
script:
|
||||
- ./macbuild.sh
|
||||
|
||||
script:
|
||||
- qmake -qt=qt5 uefitool.pro
|
||||
- make
|
||||
deploy:
|
||||
provider: releases
|
||||
skip_cleanup: true
|
||||
file: "dist/*.zip"
|
||||
file_glob: true
|
||||
api_key:
|
||||
secure: "WjYd93lVLKHULBpUXS/WtGrkdXyAwxHOUnLJotyDmQipAQP5Ox7Kj12JwkSJGEmVOEdcbIQJyi0QxPjn1UYbYsAt6Op8zrjnYLS4G4fMdBtcxprWzid85uTW7oAAIFs7ygMVhpzxRKpu70yNb683vbThqNmaOu6RyG9aJOLtPAg="
|
||||
on:
|
||||
tags: true
|
||||
|
||||
- os: linux
|
||||
compiler: clang
|
||||
|
||||
before_install:
|
||||
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
|
||||
- sudo apt-get update -qq
|
||||
- sudo apt-get install -qq qt5-qmake qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev
|
||||
|
||||
script:
|
||||
- qmake -qt=qt5 uefitool.pro
|
||||
- make
|
||||
|
||||
- os: linux
|
||||
compiler: gcc
|
||||
|
||||
before_install:
|
||||
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
|
||||
- sudo apt-get update -qq
|
||||
- sudo apt-get install -qq qt5-qmake qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libsqlite3-dev
|
||||
|
||||
script:
|
||||
- qmake -qt=qt5 uefitool.pro
|
||||
- make
|
||||
|
@ -2662,6 +2662,17 @@ UINT8 FfsEngine::rebuild(const QModelIndex & index)
|
||||
return ERR_SUCCESS;
|
||||
}
|
||||
|
||||
UINT8 FfsEngine::doNotRebuild(const QModelIndex & index)
|
||||
{
|
||||
if (!index.isValid())
|
||||
return ERR_INVALID_PARAMETER;
|
||||
|
||||
// Set action for the item
|
||||
model->setAction(index, Actions::DoNotRebuild);
|
||||
|
||||
return ERR_SUCCESS;
|
||||
}
|
||||
|
||||
// Compression routines
|
||||
UINT8 FfsEngine::decompress(const QByteArray & compressedData, const UINT8 compressionType, QByteArray & decompressedData, UINT8 * algorithm)
|
||||
{
|
||||
|
67
macbuild.sh
Executable file
67
macbuild.sh
Executable file
@ -0,0 +1,67 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! -d /opt/qt56sm ]; then
|
||||
curl -L -o /tmp/qt-5.6.3-static-mac.zip https://github.com/distdb/qtbuilds/blob/master/qt-5.6.3-static-mac.zip?raw=true || exit 1
|
||||
qtsum=$(shasum -a 256 /tmp/qt-5.6.3-static-mac.zip | cut -f1 -d' ')
|
||||
qtexpsum="214d22d8572ea6162753c8dd251d79275f3b22d49204718c637d722409e0cfcb"
|
||||
if [ "$qtsum" != "$qtexpsum" ]; then
|
||||
echo "Qt hash $qtsum does not match $qtexpsum"
|
||||
exit 1
|
||||
fi
|
||||
sudo mkdir -p /opt || exit 1
|
||||
cd /opt || exit 1
|
||||
sudo unzip -q /tmp/qt-5.6.3-static-mac.zip || exit 1
|
||||
cd - || exit 1
|
||||
fi
|
||||
|
||||
export PATH="/opt/qt56sm/bin:$PATH"
|
||||
|
||||
echo "Attempting to build UEFITool for macOS..."
|
||||
|
||||
UEFITOOL_VER=$(cat uefitool.cpp | grep ^version | cut -d'"' -f2)
|
||||
UEFIEXTRACT_VER=$(cat UEFIExtract/uefiextract_main.cpp | grep '"UEFIExtract [0-9]' | cut -d'"' -f2 | cut -d' ' -f2)
|
||||
UEFIFIND_VER=$(cat UEFIFind/uefifind_main.cpp | grep '"UEFIFind [0-9]' | cut -d'"' -f2 | cut -d' ' -f2)
|
||||
UEFIPATCH_VER=$(cat UEFIPatch/uefipatch_main.cpp | grep '"UEFIPatch [0-9]' | cut -d'"' -f2 | cut -d' ' -f2)
|
||||
UEFIREPLACE_VER=$(cat UEFIReplace/uefireplace_main.cpp | grep '"UEFIReplace [0-9]' | cut -d'"' -f2 | cut -d' ' -f2)
|
||||
|
||||
build_tool() {
|
||||
echo "Building $1 $2"
|
||||
# Check version
|
||||
if [ "$(echo "$2" | grep '^[0-9]*\.[0-9]*\.[0-9]*$')" != "$2" ]; then
|
||||
echo "Invalid $1 version!"
|
||||
exit 1
|
||||
fi
|
||||
# Tools are in subdirectories
|
||||
if [ "$1" != "UEFITool" ]; then
|
||||
cd "$1" || exit 1
|
||||
fi
|
||||
|
||||
# Build
|
||||
qmake $3 QMAKE_CXXFLAGS+=-flto QMAKE_LFLAGS+=-flto CONFIG+=optimize_size || exit 1
|
||||
make || exit 1
|
||||
|
||||
# Archive
|
||||
if [ "$1" = "UEFITool" ]; then
|
||||
strip -x UEFITool.app/Contents/MacOS/UEFITool || exit 1
|
||||
zip -qry dist/"UEFITool_${UEFITOOL_VER}_mac.zip" UEFITool.app "${4}" || exit 1
|
||||
else
|
||||
strip -x "$1" || exit 1
|
||||
zip -qry ../dist/"${1}_${2}_mac.zip" "${1}" "${4}" || exit 1
|
||||
fi
|
||||
|
||||
# Return to parent
|
||||
if [ "$1" != "UEFITool" ]; then
|
||||
cd - || exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
rm -rf dist
|
||||
mkdir -p dist || exit 1
|
||||
|
||||
build_tool UEFITool "$UEFITOOL_VER" uefitool.pro
|
||||
build_tool UEFIExtract "$UEFIEXTRACT_VER" uefiextract.pro
|
||||
build_tool UEFIFind "$UEFIFIND_VER" uefifind.pro
|
||||
build_tool UEFIPatch "$UEFIPATCH_VER" uefipatch.pro patches.txt
|
||||
build_tool UEFIReplace "$UEFIREPLACE_VER" uefireplace.pro
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user