Compare commits

...

26 Commits

Author SHA1 Message Date
uazo
729ad9b695 try to disable clang_use_chrome_plugins=false 2022-04-12 10:13:51 +02:00
uazo
ffc028a0e9 Update export-all-patch.sh 2022-04-12 10:11:25 +02:00
uazo
20f617fd4a Update whitelist 2022-03-30 16:44:33 +02:00
uazo
dce1324300 Update whitelist 2022-03-30 16:25:06 +02:00
uazo
dacc20b60d Update whitelist 2022-03-30 16:20:48 +02:00
uazo
fe2587d942 Update whitelist 2022-03-30 16:15:52 +02:00
uazo
bafaa5f167 Update whitelist 2022-03-30 16:09:15 +02:00
uazo
64df7a0a73 mark the release as a prerelease 2022-03-25 11:22:15 +01:00
uazo
aede203911 Update apply-bromite-patches.sh 2022-03-25 08:58:27 +01:00
uazo
7dc817d819 Update apply-bromite-patches.sh 2022-03-25 07:26:43 +01:00
uazo
81f793ed34 fix export error 2022-03-24 20:29:25 +01:00
uazo
a716f182be Update export-all-patch.sh 2022-03-24 16:58:45 +01:00
uazo
cfbb923b0d check for changed and contrib folders 2022-03-24 16:26:38 +01:00
uazo
f12c3e78b4 fix incorrect way to set env variable 2022-03-09 08:59:27 +01:00
uazo
854b6356d5 fix pup command 2022-03-09 08:57:06 +01:00
Carmelo Messina
89497b252b Revert "Update release.yaml"
This reverts commit 58fe440996.
2022-03-09 08:50:29 +01:00
uazo
58fe440996 Update release.yaml 2022-03-09 08:45:13 +01:00
uazo
7d83b64cc9 Create export-patch-list.sh 2022-02-25 14:27:13 +01:00
uazo
45dff72f43 fix argument 2022-02-23 15:28:48 +01:00
uazo
cfabccd77f remove last empty line like upstream 2022-02-22 15:42:20 +01:00
uazo
d6bbb56bc3 remove space after "-- " like upstream 2022-02-22 15:41:54 +01:00
uazo
d184899841 fix is_cfi build error in debug 2022-02-22 14:34:51 +01:00
uazo
cc085e6ebb change upstream gnargs file 2022-02-22 10:04:33 +01:00
uazo
0978237d5c add ephemeral to runner config 2022-02-18 16:08:27 +01:00
uazo
94ad7d9a1d Update to runner v2.302.5 2022-02-18 12:52:34 +00:00
uazo
f16bbde3d2 update text "2.20.1 -> 2.25.1" 2022-02-14 08:44:14 +01:00
11 changed files with 68 additions and 12 deletions

View File

@@ -250,9 +250,9 @@ jobs:
echo "::group::-------- gn gen"
[[ "$USEGOMA" = "true" ]] && \
gn gen --args="import(\"/home/lg/working_dir/bromite/build/GN_ARGS\") use_goma=true goma_dir=\"$WORKSPACE/goma\" $(cat ../../build_args.gni) " out/bromite \
gn gen --args="import(\"/home/lg/working_dir/bromite/build/bromite.gn_args\") use_goma=true goma_dir=\"$WORKSPACE/goma\" $(cat ../../build_args.gni) " out/bromite \
|| \
gn gen --args="import(\"/home/lg/working_dir/bromite/build/GN_ARGS\") $(cat ../../build_args.gni) " out/bromite
gn gen --args="import(\"/home/lg/working_dir/bromite/build/bromite.gn_args\") $(cat ../../build_args.gni) " out/bromite
echo "::endgroup::"
echo "::group::-------- gn args"

View File

@@ -45,7 +45,7 @@ jobs:
run: |
wget https://github.com/ericchiang/pup/releases/download/v0.4.0/pup_v0.4.0_linux_amd64.zip
unzip pup_v0.4.0_linux_amd64.zip && rm pup_v0.4.0_linux_amd64.zip
BRANCH=$(curl https://github.com/uazo/bromite/branch_commits/$BROMITE_SHA | ./pup -p li.branch a text{})
BRANCH=$(curl https://github.com/uazo/bromite/branch_commits/$BROMITE_SHA | ./pup -p li.branch:last-child a text{} | xargs)
echo "BRANCH=$BRANCH" >> $GITHUB_ENV
wget https://github.com/cli/cli/releases/download/v2.4.0/gh_2.4.0_linux_amd64.tar.gz
@@ -74,7 +74,7 @@ jobs:
cd bromite
VERSION=v$(cat ${{ env.OUTPUTFILE }}/RELEASE)-${{ github.event.inputs.build }}
../gh_2.4.0_linux_amd64/bin/gh release create $VERSION-$BROMITE_SHA \
../$APK --notes ""
../$APK --notes "" -p
# - name: Enable proxy on container
# shell: bash

View File

@@ -10,7 +10,7 @@ fi
if [ -z "$2" ]
then
PATCH_NEW_PATH="~/bromite/build/patches-new"
PATCH_NEW_PATH=~/bromite/build/patches-new
else
PATCH_NEW_PATH=$2
fi

View File

@@ -32,3 +32,16 @@ for patch in $ALLPATCHS_E; do
bash ~/bromite-buildtools/export-single-patch.sh $patch $PATCH_FILE
done
PATCH_LIST=~/bromite/build/bromite_patches_list.txt
mkdir ~/bromite/build/patches-new/changed
mkdir ~/bromite/build/patches-new/contrib
for current_file in $(cat $PATCH_LIST); do
if [[ "$current_file" == *".patch" ]]; then
if [[ $current_file =~ ^changed/.* ]]; then
mv ~/bromite/build/patches-new/$(basename $current_file) ~/bromite/build/patches-new/changed
elif [[ $current_file =~ ^contrib/.* ]]; then
mv ~/bromite/build/patches-new/$(basename $current_file) ~/bromite/build/patches-new/contrib || true
fi
fi
done

25
export-patch-list.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
VERSION=$(cat ~/bromite/build/RELEASE)
CURRENT_RELEASE=$(git -C ~/chromium/src/ rev-parse --verify refs/tags/$VERSION)
ALLPATCHS_E=$(git -C ~/chromium/src/ rev-list HEAD...$CURRENT_RELEASE)
mkdir ~/bromite/build/patches-new
rm ~/bromite/build/patches-new/patch-list
NO_NAME=1
for patch in $ALLPATCHS_E; do
PATCH_FILE=$(git -C ~/chromium/src/ show -s $patch | grep FILE: | sed 's/FILE://g' | sed 's/^[ \t]*//;s/[ \t]*$//')
if [[ "$PATCH_FILE" == *"Automated-domain-substitution"* ]]; then
continue
fi
echo $PATCH_FILE >>~/bromite/build/patches-new/patch-list
done
tac ~/bromite/build/patches-new/patch-list >~/bromite/build/patches-new/zz-patch-list.txt
rm ~/bromite/build/patches-new/patch-list

View File

@@ -32,9 +32,9 @@ sed -i '/^ mode change/d' ~/bromite/build/patches-new/$PATCH_FILE
sed -i '/^old mode /d' ~/bromite/build/patches-new/$PATCH_FILE
sed -i '/^new mode /d' ~/bromite/build/patches-new/$PATCH_FILE
echo "-- " >> ~/bromite/build/patches-new/$PATCH_FILE
echo "2.20.1" >> ~/bromite/build/patches-new/$PATCH_FILE
echo "" >> ~/bromite/build/patches-new/$PATCH_FILE
echo "--" >> ~/bromite/build/patches-new/$PATCH_FILE
echo "2.25.1" >> ~/bromite/build/patches-new/$PATCH_FILE
#echo "" >> ~/bromite/build/patches-new/$PATCH_FILE
echo " done."
echo ""

View File

@@ -14,7 +14,8 @@ if(getenv("TARGET_CPU") != "") {
# print("Target " + target_cpu)
enable_kythe_annotations = true
clang_use_chrome_plugins = false
# clang_use_chrome_plugins = false
chrome_public_manifest_package = "org.bromite.bromite.dev"
if(_is_debug_build == "true") {
# print("Debug build on")
@@ -24,6 +25,11 @@ if(_is_debug_build == "true") {
symbol_level = 1
strip_debug_info = false
generate_linker_map = false
# since is_cfi require use_thin_lto
# but not work in debug mode
is_cfi = false # disable it
use_cfi_cast = false # disable it
} else {
generate_linker_map = true
}

View File

@@ -10,6 +10,7 @@ cd chromium/src
echo -e ${RED} ------- apply patchs ${NC}
for file in $(cat ../../bromite/build/bromite_patches_list.txt) ; do
if [[ "$file" == *".patch" ]]; then
#if [[ "$file" == *"Automated-domain-substitution"* ]]; then
# echo -e ${RED} " -> Excluding $file" ${NC}
# continue
@@ -17,7 +18,7 @@ for file in $(cat ../../bromite/build/bromite_patches_list.txt) ; do
echo -e ${RED} " -> Apply $file" ${NC}
REPL="0,/^---/s//FILE:"$file"\n---/"
REPL="0,/^---/s//FILE:"$(basename $file)"\n---/"
cat ../../bromite/build/patches/$file | sed $REPL | git am
if [ $? -ne 0 ]
@@ -27,4 +28,6 @@ for file in $(cat ../../bromite/build/bromite_patches_list.txt) ; do
fi
echo " "
fi
done

View File

@@ -77,7 +77,7 @@ RUN useradd -m runner \
# Build args
ARG TARGETPLATFORM=amd64
ARG RUNNER_VERSION=2.302.4
ARG RUNNER_VERSION=2.302.5
WORKDIR /runner
# Runner download supports amd64 as x64

View File

@@ -48,7 +48,9 @@ echo "Registering runner ${runner_id}"
--url "${registration_url}" \
--allowedauthorslist "${ALLOWEDAUTHORSLIST}" \
--unattended \
--replace
--replace \
--disableupdate \
--ephemeral
trap 'remove_runner; exit 130' SIGINT
trap 'remove_runner; exit 143' SIGTERM

View File

@@ -4,6 +4,13 @@
.githubusercontent.com
.ubuntu.com
# for .net
.dot.net
dotnet.microsoft.com
dotnetcli.azureedge.net
aka.ms
packages.microsoft.com
# for buildeps
#chromium.googlesource.com