File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ ARG BUILD_FLAVOR="default"
55ARG MESA_VERSION=24.2.8-104
66
77RUN if [[ ${BUILD_FLAVOR} != remoting ]]; then \
8+ dnf update && \
89 dnf install -y python3-dnf-plugin-versionlock && \
910 dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
1011 dnf copr enable -y slp/mesa-krunkit epel-9-aarch64 && \
@@ -19,6 +20,7 @@ RUN if [[ ${BUILD_FLAVOR} != remoting ]]; then \
1920# for API Remoting
2021
2122RUN if [[ ${BUILD_FLAVOR} == remoting ]]; then \
23+ dnf update && \
2224 dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
2325 dnf install -y git cmake gcc gcc-c++ libdrm-devel; \
2426 fi
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ class Entrypoint:
100100
101101 def __init__ (self ):
102102 self .pre_cleanup_ci = cleanup_ci
103+ self .post_cleanup_ci = cleanup_ci
103104 self .prepare_ci = prepare_ci
104105 self .test_ci = test_ci
105106
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ ci_banner() {
4444 git show --quiet --oneline ${PULL_BASE_SHA:- } ..${PULL_PULL_SHA:- } 2> /dev/null \
4545 || echo " WARNING: Could not access git history (${PULL_BASE_SHA:- } ..${PULL_PULL_SHA:- } ) ..."
4646 else
47- echo " WARNING: PULL_BASE_SHA=${PULL_BASE_SHA:- } and/or PULL_PULL_SHA=${PULL_PULL_SHA:- } not set. Showing the commits from main."
48- git show --quiet --oneline main.. \
47+ echo " WARNING: PULL_BASE_SHA=${PULL_BASE_SHA:- } and/or PULL_PULL_SHA=${PULL_PULL_SHA:- } not set. Showing the last commits from main."
48+ git show --quiet --oneline main.. | head 10 \
4949 || echo " WARNING: Could not access git history (main..) ..."
5050 fi
5151 fi
You can’t perform that action at this time.
0 commit comments