Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2024-07-19 19:37:14 +02:00
parent 1cdb415484
commit 8f3e37b743
2 changed files with 10 additions and 1 deletions

View File

@ -28,3 +28,9 @@ jobs:
- run: echo "::error::Test failed" - run: echo "::error::Test failed"
- run: echo "It works :rocket:" >> $GITHUB_STEP_SUMMARY - run: echo "It works :rocket:" >> $GITHUB_STEP_SUMMARY
- run: tests/annotate.sh >> $GITHUB_STEP_SUMMARY - run: tests/annotate.sh >> $GITHUB_STEP_SUMMARY
build-tw-gcc-next:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CI Tumbleweed
run: ci/ci-build-tumbleweed

View File

@ -27,7 +27,10 @@ RUN zypper install -y --no-recommends glibc-devel-static libblkid-devel-static \
RUN zypper install -y --no-recommends libgcrypt-devel libsodium-devel libkcapi-devel \ RUN zypper install -y --no-recommends libgcrypt-devel libsodium-devel libkcapi-devel \
libbotan-devel libopenssl-3-devel libbotan-devel libopenssl-3-devel
RUN zypper install -y --no-recommends gcc14
RUN zypper -n --gpg-auto-import-keys ar --no-gpgcheck --refresh https://download.opensuse.org/repositories/devel:/gcc:/next/openSUSE_Tumbleweed/ tw-oss
RUN zypper install -y --allow-vendor-change gcc15
RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-15 15
COPY ./test-build . COPY ./test-build .
COPY ./run-tests . COPY ./run-tests .