Skip to content

Commit

Permalink
Use gcc-4.8 for GHA legacy tests (open-telemetry#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Tax committed Jul 23, 2020
1 parent e616636 commit 94cdc70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
sudo ./ci/install_gcc48.sh
- name: run tests
run: ./ci/do_ci.sh bazel.legacy.test
env:
CC: /usr/bin/gcc-4.8

bazel_test:
name: Bazel
Expand Down
2 changes: 1 addition & 1 deletion exporters/ostream/src/span_exporter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace exporter
namespace trace
{
OStreamSpanExporter::OStreamSpanExporter(std::ostream &sout) noexcept
: sout_{sout} {}
: sout_(sout) {}

std::unique_ptr<sdktrace::Recordable> OStreamSpanExporter::MakeRecordable() noexcept
{
Expand Down

0 comments on commit 94cdc70

Please sign in to comment.