Skip to content

Commit

Permalink
Merge pull request #748 from nats-io/1_29_2
Browse files Browse the repository at this point in the history
[BUMP] ci server version, client version
  • Loading branch information
aricart authored Feb 13, 2025
2 parents ef33ed0 + 65c2034 commit feb7cd0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,12 @@ jobs:
with:
deno-version: ${{ matrix.deno-version }}

- name: Set NATS Server Version
run: echo "NATS_VERSION=v2.10.24" >> $GITHUB_ENV

# this here because dns seems to be wedged on gha
# - name: Add hosts to /etc/hosts
# run: |
# sudo echo "145.40.102.131 demo.nats.io" | sudo tee -a /etc/hosts

- name: Get nats-server
run: |
wget "https://github.com/nats-io/nats-server/releases/download/$NATS_VERSION/nats-server-$NATS_VERSION-linux-amd64.zip" -O tmp.zip
unzip tmp.zip
mv nats-server-$NATS_VERSION-linux-amd64 nats-server
rm nats-server/README.md LICENSE
- name: Install nats-server
uses: aricart/[email protected]
with:
repo: nats-io/nats-server
name: nats-server
cache: true

- name: Lint Deno Module
run: deno fmt --check --ignore=docs/
Expand Down
2 changes: 1 addition & 1 deletion src/deno_transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import {
Transport,
} from "../nats-base-client/internal_mod.ts";

const VERSION = "1.29.1";
const VERSION = "1.29.2";
const LANG = "nats.deno";

const ReadBufferSize = 1024 * 256;
Expand Down
2 changes: 1 addition & 1 deletion tests/helpers/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ export class NatsServer implements PortInfo {
}

static async start(conf?: any, debug = false): Promise<NatsServer> {
const exe = Deno.env.get("CI") ? "nats-server/nats-server" : "nats-server";
const exe = "nats-server";
const tmp = path.resolve(Deno.env.get("TMPDIR") || ".");
conf = NatsServer.confDefaults(conf);
conf.ports_file_dir = tmp;
Expand Down

0 comments on commit feb7cd0

Please sign in to comment.