|
|
|
@ -22,75 +22,23 @@ jobs:
|
|
|
|
|
options: --tmpfs /build:rw --user 0:0
|
|
|
|
|
steps:
|
|
|
|
|
- name: "prepare env"
|
|
|
|
|
run: |
|
|
|
|
|
zypper --non-interactive up
|
|
|
|
|
zypper --non-interactive in git-core jq curl
|
|
|
|
|
# From deploycala.py
|
|
|
|
|
zypper --non-interactive in \
|
|
|
|
|
"autoconf" \
|
|
|
|
|
"automake" \
|
|
|
|
|
"bison" \
|
|
|
|
|
"flex" \
|
|
|
|
|
"git" \
|
|
|
|
|
"libtool" \
|
|
|
|
|
"m4" \
|
|
|
|
|
"make" \
|
|
|
|
|
"cmake" \
|
|
|
|
|
"extra-cmake-modules" \
|
|
|
|
|
"gcc-c++" \
|
|
|
|
|
"libqt5-qtbase-devel" \
|
|
|
|
|
"libqt5-linguist-devel" \
|
|
|
|
|
"libqt5-qtsvg-devel" \
|
|
|
|
|
"libqt5-qtdeclarative-devel" \
|
|
|
|
|
"libqt5-qtwebengine-devel" \
|
|
|
|
|
"yaml-cpp-devel" \
|
|
|
|
|
"libpolkit-qt5-1-devel" \
|
|
|
|
|
"kservice-devel" \
|
|
|
|
|
"kpackage-devel" \
|
|
|
|
|
"kparts-devel" \
|
|
|
|
|
"kcrash-devel" \
|
|
|
|
|
"kpmcore-devel" \
|
|
|
|
|
"plasma5-workspace-devel" \
|
|
|
|
|
"plasma-framework-devel" \
|
|
|
|
|
"libpwquality-devel" \
|
|
|
|
|
"parted-devel" \
|
|
|
|
|
"python3-devel" \
|
|
|
|
|
"boost-devel" \
|
|
|
|
|
"libboost_python-py3-*-devel"
|
|
|
|
|
# Additional dependencies
|
|
|
|
|
zypper --non-interactive in \
|
|
|
|
|
libicu-devel \
|
|
|
|
|
libAppStreamQt-devel \
|
|
|
|
|
libatasmart-devel
|
|
|
|
|
uses: calamares/actions/prepare-opensuse@v2
|
|
|
|
|
- name: "prepare source"
|
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
- name: "prepare build"
|
|
|
|
|
id: pre_build
|
|
|
|
|
run: |
|
|
|
|
|
test -n "$BUILDDIR" || { echo "! \$BUILDDIR not set" ; exit 1 ; }
|
|
|
|
|
mkdir -p $BUILDDIR
|
|
|
|
|
test -f $SRCDIR/CMakeLists.txt || { echo "! Missing $SRCDIR/CMakeLists.txt" ; exit 1 ; }
|
|
|
|
|
echo "::set-output name=message::"`git log -1 --abbrev-commit --pretty=oneline --no-decorate ${{ github.event.head_commit.id }}`
|
|
|
|
|
- name: "Calamares: cmake"
|
|
|
|
|
working-directory: ${{ env.BUILDDIR }}
|
|
|
|
|
run: cmake $CMAKE_ARGS $SRCDIR
|
|
|
|
|
- name: "Calamares: make"
|
|
|
|
|
working-directory: ${{ env.BUILDDIR }}
|
|
|
|
|
run: make -j2 VERBOSE=1
|
|
|
|
|
- name: "Calamares: install"
|
|
|
|
|
working-directory: ${{ env.BUILDDIR }}
|
|
|
|
|
run: make install VERBOSE=1
|
|
|
|
|
- name: "build"
|
|
|
|
|
id: build
|
|
|
|
|
uses: calamares/actions/generic-build@v2
|
|
|
|
|
- name: "notify: ok"
|
|
|
|
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
|
|
|
|
uses: calamares/actions/matrix-notify@v1
|
|
|
|
|
uses: calamares/actions/matrix-notify@v2
|
|
|
|
|
with:
|
|
|
|
|
token: ${{ secrets.MATRIX_TOKEN }}
|
|
|
|
|
room: ${{ secrets.MATRIX_ROOM }}
|
|
|
|
|
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.pre_build.outputs.message }}"
|
|
|
|
|
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
|
|
|
|
- name: "notify: fail"
|
|
|
|
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
|
|
|
|
uses: calamares/actions/matrix-notify@v1
|
|
|
|
|
uses: calamares/actions/matrix-notify@v2
|
|
|
|
|
with:
|
|
|
|
|
token: ${{ secrets.MATRIX_TOKEN }}
|
|
|
|
|
room: ${{ secrets.MATRIX_ROOM }}
|
|
|
|
|
message: "FAIL ${{ github.workflow }} in ${{ github.repository }} ${{ steps.pre_build.outputs.message }}"
|
|
|
|
|
message: "FAIL ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
|
|
|
|