Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gurinderu committed Jul 8, 2024
2 parents 0753c63 + a933a11 commit 73a4383
Show file tree
Hide file tree
Showing 13 changed files with 111 additions and 89 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.25.0"
".": "0.25.1"
}
13 changes: 2 additions & 11 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,6 @@ on:
description: "Docker image name"
type: string
default: "docker.fluence.dev/nox"
flavour:
# not used, here for compatibility
description: "nox flavour"
type: string
default: "minimal"
nox-sha:
# not used, here for compatibility
description: "sha256 hash of nox binary"
type: string
outputs:
nox-image:
description: "nox snapshot image"
Expand All @@ -28,7 +19,7 @@ on:
jobs:
publish:
name: "Publish snapshot"
runs-on: builder
runs-on: ubuntu-latest
timeout-minutes: 60

outputs:
Expand Down Expand Up @@ -109,7 +100,7 @@ jobs:
# github allows only 10GB of cache
# so save cache only on merge to master
# to use less space and speed up CI
cache-to: ${{ github.event == 'push' && 'type=gha,mode=max' || '' }}
cache-to: ${{ github.event_name == 'push' && 'type=gha,mode=max' || '' }}

- name: Print results to check summary
if: always()
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ jobs:
with:
nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"


js-client:
needs:
- nox-snapshot
Expand All @@ -100,11 +99,3 @@ jobs:
uses: fluencelabs/aqua/.github/workflows/tests.yml@main
with:
nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"

# registry:
# needs:
# - nox-snapshot
# uses: fluencelabs/registry/.github/workflows/tests.yml@main
# with:
# nox-image: "${{ needs.nox-snapshot.outputs.nox-image }}"
# if-no-artifacts-found: warn
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

bump-version:
if: needs.release-please.outputs.pr != null
runs-on: builder
runs-on: linux-amd64-c-2xlarge
needs:
- release-please

Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ on:
- ".github/**"
- "!.github/workflows/run-tests.yml"
- "!.github/workflows/tests.yml"
push:
branches:
- "master"
paths-ignore:
- "**.md"
- ".github/**"
- "!.github/workflows/tests.yml"
- "!.github/workflows/run-tests.yml"

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
Expand All @@ -20,7 +28,7 @@ jobs:
test-retries: 0

lints:
runs-on: builder
runs-on: linux-amd64-c-2xlarge

env:
RUSTFLAGS: "-D warnings --cfg tokio_unstable -C link-arg=-B/usr/local/bin/mold"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:
jobs:
tests:
name: "cargo nextest"
runs-on: builder
runs-on: linux-amd64-c-2xlarge
timeout-minutes: 60

steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.25.1](https://github.com/fluencelabs/nox/compare/nox-v0.25.0...nox-v0.25.1) (2024-07-07)


### Features

* track nonce ([#2306](https://github.com/fluencelabs/nox/issues/2306)) ([0215d57](https://github.com/fluencelabs/nox/commit/0215d577f460a57ff76fa9cab3d58b99e2beb420))

## [0.25.0](https://github.com/fluencelabs/nox/compare/nox-v0.24.0...nox-v0.25.0) (2024-06-05)


Expand Down
Loading

0 comments on commit 73a4383

Please sign in to comment.