Skip to content

Commit

Permalink
`.'yml*go (#sawi)
Browse files Browse the repository at this point in the history
* TestStreamsStress: reduce node count, increase stream density.

* upgrade peerstore.

* fix libp2p#672: wait until done; fix ponger response.

* remove superfluous goroutine; avoid t.Fatal from goroutines.

* mdns: always use interface addresses

We don't want to use the transformed/munged host addresses for local
announcements. Ideally, we'd take a more scientific approach to this (i.e.,
"host, please give me addresses relative to X") but we can't do that yet.

* Removed ineffectual assignments

We don't use `cs` here, drop it.

* Fixed typos (libp2p#680)

Just a few nit-picky typo fixes.

* Make use of time.Until & time.Since (libp2p#681)

No need to manually subtract timestamps.

* Simplify increments (libp2p#684)

* Avoid unnecessary conversions (libp2p#685)

No need to convert these types.

* Added missing error check in test (libp2p#683)

* gomod: update go-libp2p-circuit

* autorelay: ensure candidate relays can hop

* Update deps, mocknet tests

* Adjust test timings for Ed25519

* Bump secio

* Bump swarm version

* new: allow overriding the user-agent with an option

Instead of using a global variable.

This also:

* Adds an option to the identify service to set the user agent.
* Removes the ability to pass an identify service to NewHost as any reasonable
  Identify service already needs to be constructed with an instance of the host.

* set a default client-version using go modules

This should help us improve network stats on who's using libp2p.

* ci: bump go to 1.12

* README: bump to go 1.12

* dep: update go-libp2p-swarm

Fixes a race condition when a user modifies the address list returned by InterfaceListenAddresses.

* use new constructor for insecure transport (libp2p#706)

* dep: upgrade eventbus to v0.1.0 (libp2p#709)

* add godocs.

* Update main.yml

* Add Filters option (libp2p#717)

The new `Filters` option allows users to take ownership of the `Filters` struct, and is suitable for cases where the addresses you want to accept/deny change dynamically.

* Rename main.yml to : [^main.yml]

* mdns: always use interface addresses

We don't want to use the transformed/munged host addresses for local
announcements. Ideally, we'd take a more scientific approach to this (i.e.,
"host, please give me addresses relative to X") but we can't do that yet.

* TestStreamsStress: reduce node count, increase stream density.

* upgrade peerstore.

* fix libp2p#672: wait until done; fix ponger response.

* remove superfluous goroutine; avoid t.Fatal from goroutines.

* Removed ineffectual assignments

We don't use `cs` here, drop it.

* Fixed typos (libp2p#680)

Just a few nit-picky typo fixes.

* Make use of time.Until & time.Since (libp2p#681)

No need to manually subtract timestamps.

* Simplify increments (libp2p#684)

* Avoid unnecessary conversions (libp2p#685)

No need to convert these types.

* Added missing error check in test (libp2p#683)

* gomod: update go-libp2p-circuit

* autorelay: ensure candidate relays can hop

* Update deps, mocknet tests

* Adjust test timings for Ed25519

* Bump secio

* Bump swarm version

* new: allow overriding the user-agent with an option

Instead of using a global variable.

This also:

* Adds an option to the identify service to set the user agent.
* Removes the ability to pass an identify service to NewHost as any reasonable
  Identify service already needs to be constructed with an instance of the host.

* set a default client-version using go modules

This should help us improve network stats on who's using libp2p.

* ci: bump go to 1.12

* README: bump to go 1.12

* dep: update go-libp2p-swarm

Fixes a race condition when a user modifies the address list returned by InterfaceListenAddresses.

* use new constructor for insecure transport (libp2p#706)

* dep: upgrade eventbus to v0.1.0 (libp2p#709)

* add godocs.

* Add Filters option (libp2p#717)

The new `Filters` option allows users to take ownership of the `Filters` struct, and is suitable for cases where the addresses you want to accept/deny change dynamically.

* Rename : [^main.yml] to `.'yml*go (sawi)

* Rename `.'yml*go (sawi) to `.'yml*go #(sawi)

* Rename `.'yml*go #(sawi) to `.'yml*go
  • Loading branch information
t4n6a1ka committed Sep 5, 2019
1 parent 34086be commit a4d415d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/`.'yml*go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.

0 comments on commit a4d415d

Please sign in to comment.