CI: chase new actions
This commit is contained in:
parent
fe78ec494f
commit
241c1840aa
4
.github/workflows/issues.yml
vendored
4
.github/workflows/issues.yml
vendored
@ -10,14 +10,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: "notify: new"
|
- name: "notify: new"
|
||||||
if: github.event.issue.state == 'open'
|
if: github.event.issue.state == 'open'
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
message: "OPENED ${{ github.event.issue.html_url }} by ${{ github.actor }} ${{ github.event.issue.title }}"
|
message: "OPENED ${{ github.event.issue.html_url }} by ${{ github.actor }} ${{ github.event.issue.title }}"
|
||||||
- name: "notify: closed"
|
- name: "notify: closed"
|
||||||
if: github.event.issue.state != 'open'
|
if: github.event.issue.state != 'open'
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
70
.github/workflows/nightly-debian.yml
vendored
70
.github/workflows/nightly-debian.yml
vendored
@ -22,77 +22,23 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
run: |
|
uses: calamares/actions/prepare-debian@v2
|
||||||
apt-get update
|
|
||||||
apt-get -y install git-core jq
|
|
||||||
apt-get -y install \
|
|
||||||
build-essential \
|
|
||||||
cmake \
|
|
||||||
extra-cmake-modules \
|
|
||||||
gettext \
|
|
||||||
kio-dev \
|
|
||||||
libatasmart-dev \
|
|
||||||
libboost-python-dev \
|
|
||||||
libkf5config-dev \
|
|
||||||
libkf5coreaddons-dev \
|
|
||||||
libkf5i18n-dev \
|
|
||||||
libkf5iconthemes-dev \
|
|
||||||
libkf5parts-dev \
|
|
||||||
libkf5service-dev \
|
|
||||||
libkf5solid-dev \
|
|
||||||
libparted-dev \
|
|
||||||
libpolkit-qt5-1-dev \
|
|
||||||
libqt5svg5-dev \
|
|
||||||
libqt5webkit5-dev \
|
|
||||||
libyaml-cpp-dev \
|
|
||||||
os-prober \
|
|
||||||
pkg-config \
|
|
||||||
python3-dev \
|
|
||||||
qtbase5-dev \
|
|
||||||
qtdeclarative5-dev \
|
|
||||||
qttools5-dev \
|
|
||||||
qttools5-dev-tools
|
|
||||||
# Same name as on KDE neon, different version
|
|
||||||
apt-get -y install libkpmcore-dev
|
|
||||||
# Additional dependencies
|
|
||||||
apt-get -y install \
|
|
||||||
libappstreamqt-dev \
|
|
||||||
libicu-dev \
|
|
||||||
libkf5crash-dev \
|
|
||||||
libkf5package-dev \
|
|
||||||
libkf5plasma-dev \
|
|
||||||
libpwquality-dev \
|
|
||||||
libqt5webenginewidgets5 \
|
|
||||||
qtwebengine5-dev
|
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "prepare build"
|
- name: "build"
|
||||||
id: pre_build
|
id: build
|
||||||
run: |
|
uses: calamares/actions/generic-build@v2
|
||||||
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: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
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"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
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 }}"
|
||||||
|
61
.github/workflows/nightly-neon.yml
vendored
61
.github/workflows/nightly-neon.yml
vendored
@ -22,59 +22,16 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
run: |
|
uses: calamares/actions/prepare-neon@v2
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get -y install git-core jq
|
|
||||||
sudo apt-get -y install \
|
|
||||||
build-essential \
|
|
||||||
cmake \
|
|
||||||
extra-cmake-modules \
|
|
||||||
gettext \
|
|
||||||
kio-dev \
|
|
||||||
libatasmart-dev \
|
|
||||||
libboost-python-dev \
|
|
||||||
libkf5config-dev \
|
|
||||||
libkf5coreaddons-dev \
|
|
||||||
libkf5i18n-dev \
|
|
||||||
libkf5iconthemes-dev \
|
|
||||||
libkf5parts-dev \
|
|
||||||
libkf5service-dev \
|
|
||||||
libkf5solid-dev \
|
|
||||||
libkpmcore-dev \
|
|
||||||
libparted-dev \
|
|
||||||
libpolkit-qt5-1-dev \
|
|
||||||
libqt5svg5-dev \
|
|
||||||
libqt5webkit5-dev \
|
|
||||||
libyaml-cpp-dev \
|
|
||||||
os-prober \
|
|
||||||
pkg-config \
|
|
||||||
python3-dev \
|
|
||||||
qtbase5-dev \
|
|
||||||
qtdeclarative5-dev \
|
|
||||||
qttools5-dev \
|
|
||||||
qttools5-dev-tools
|
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "prepare build"
|
- name: "build"
|
||||||
id: pre_build
|
id: build
|
||||||
run: |
|
uses: calamares/actions/generic-build@v2
|
||||||
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 DESTDIR=${{ env.BUILDDIR }}/stage
|
|
||||||
- name: "Calamares: archive"
|
- name: "Calamares: archive"
|
||||||
working-directory: ${{ env.BUILDDIR }}
|
working-directory: ${{ env.BUILDDIR }}
|
||||||
run: tar czf calamares.tar.gz stage
|
run: tar czf calamares.tar.gz stage
|
||||||
- name: "upload"
|
- name: "Calamares: upload"
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: calamares-tarball
|
name: calamares-tarball
|
||||||
@ -83,15 +40,15 @@ jobs:
|
|||||||
retention-days: 3
|
retention-days: 3
|
||||||
- name: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
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"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
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 }}"
|
||||||
|
68
.github/workflows/nightly-opensuse.yml
vendored
68
.github/workflows/nightly-opensuse.yml
vendored
@ -22,75 +22,23 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
run: |
|
uses: calamares/actions/prepare-opensuse@v2
|
||||||
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
|
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "prepare build"
|
- name: "build"
|
||||||
id: pre_build
|
id: build
|
||||||
run: |
|
uses: calamares/actions/generic-build@v2
|
||||||
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: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
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"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
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 }}"
|
||||||
|
4
.github/workflows/push.yml
vendored
4
.github/workflows/push.yml
vendored
@ -36,7 +36,7 @@ jobs:
|
|||||||
uses: calamares/actions/generic-build@v2
|
uses: calamares/actions/generic-build@v2
|
||||||
- name: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
@ -45,7 +45,7 @@ jobs:
|
|||||||
.. ${{ steps.build.outputs.git-summary }}
|
.. ${{ steps.build.outputs.git-summary }}
|
||||||
- name: "notify: fail"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v1
|
uses: calamares/actions/matrix-notify@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
Loading…
Reference in New Issue
Block a user