I am having difficulties building webrtc at a specific release tag. The
describe building a release branch, but not a release tag. Using the
$ mkdir webrtc_build
$ cd webrtc_build/
$ export PATH=/home/ahochhaus/webrtc_build/depot_tools/:$PATH
$ export GYP_DEFINES="OS=android"
$ fetch --nohooks webrtc_android
$ cd src
$ # If I wanted to build the release branch, the following commands work:
$ # git branch -r # To see available release branches
$ # git checkout -b branch_56 refs/remotes/branch-heads/56
$ # However, trying to build a release tag, I run:
$ git fetch --tags
$ git show-ref --tags # To see available release tags
(no output -- I think this should show the release tags)
$ git checkout -b branch_56_0_2924_87 tags/56.0.2924.87
fatal: Cannot update paths and switch to branch 'branch_56_0_2924_87' at the same time.
Did you intend to checkout 'tags/56.0.2924.87' which can not be resolved as commit?
Is it possible to easily build webrtc at an exact chrome release tag? What do I need to change to fetch the webrtc release tags?