Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

submodule: bump openthread from 91b7c3f to 7074a43 #555

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 31, 2023

Bumps openthread from 91b7c3f to 7074a43.

Commits

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [openthread](https://github.com/openthread/openthread) from `91b7c3f` to `7074a43`.
- [Release notes](https://github.com/openthread/openthread/releases)
- [Commits](openthread/openthread@91b7c3f...7074a43)

---
updated-dependencies:
- dependency-name: openthread
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file submodules Pull requests that update Submodules code labels Oct 31, 2023
@pulin1103
Copy link
Contributor

pulin1103 commented Oct 31, 2023

@jwhui

I pulled the corresponding branch for testing on my ubuntu pc, and the bootstrap process was successful.
From the logs, it seems that there was an issue with 'sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386' on your environment.
I also executed the same command on my side and did not encounter the same error.

root@ct:/pr-555/ot-b91# sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
libc6:i386 is already the newest version (2.35-0ubuntu3.4).
libstdc++6:i386 is already the newest version (12.3.0-1ubuntu1~22.04).
libncurses5:i386 is already the newest version (6.3-2ubuntu0.1).
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

@jwhui
Copy link
Member

jwhui commented Oct 31, 2023

I also executed the same command on my side and did not encounter the same error.

@pulin1103, it fails consistently on GitHub Actions.

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 apt : Depends: libapt-pkg6.0 (>= 2.4.10) but it is not going to be installed
       Depends: libstdc++6 (>= 11) but it is not installable
 libgcc-s1 : Breaks: libgcc-s1:i386 (!= 13.1.0-8ubuntu1~22.04) but 12.3.0-1ubuntu1~22.04 is to be installed
 libgcc-s1:i386 : Breaks: libgcc-s1 (!= 12.3.0-1ubuntu1~22.04) but 13.1.0-8ubuntu1~22.04 is to be installed
 nginx-core : Depends: libnginx-mod-http-xslt-filter (= 1.18.0-6ubuntu14.4) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

https://github.com/openthread/ot-b91/actions/runs/6701908128/job/18210073914?pr=555

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2023

Superseded by #556.

@dependabot dependabot bot closed this Nov 1, 2023
@dependabot dependabot bot deleted the dependabot/submodules/openthread-7074a43 branch November 1, 2023 04:17
@pulin1103
Copy link
Contributor

pulin1103 commented Nov 1, 2023

@jwhui The package dependencies in Ubuntu 22.04 are somewhat messy, and recent updates to certain packages may have caused environment configuration issues.
I made some changes to the /.github/workflow/build/yml

cd /tmp
sudo dpkg --add-architecture i386
sudo rm /etc/apt/sources.list.d/* && sudo apt-get update
sudo apt-get --no-install-recommends install -y lib32z1 ninja-build
sudo apt-get install unzip
sudo apt-get install aptitude
sudo aptitude -f install libgcc-s1:i386 -y
sudo aptitude -f install libgcc-s1 -y
sudo apt autoremove
sudo apt install module-assistant
sudo apt install gcc-multilib
sudo apt install g++-multilib
sudo apt-get install libncurses5:i386
wget ${{ matrix.gcc_download_url }} -O gcc-riscv32.zip
unzip gcc-riscv32.zip

I tested it on my repository, Github Actions has passed.

bootstrap

Please incorporate my changes and try again. If there are any issues, please let me know.

@jwhui
Copy link
Member

jwhui commented Nov 1, 2023

@pulin1103 , that seems to work. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file submodules Pull requests that update Submodules code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants