Skip to content

Commit fc6625b

Browse files
committed
WIP, CI: turn off jobs except new artifact demo
1 parent adab1b4 commit fc6625b

File tree

6 files changed

+83
-80
lines changed

6 files changed

+83
-80
lines changed

.github/actions/plan/platforms.ts

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -50,63 +50,63 @@ export const all = {
5050
artifactMarker: "ubuntu2404",
5151
isBroken: false,
5252
},
53-
ubuntu2404_aarch64: {
54-
name: "Ubuntu 24.04 (aarch64)",
55-
os: "ubuntu-24.04-arm",
56-
buildEnvScript: buildEnvScriptPath("ubuntu.sh"),
57-
isOnSelfHostedRunner: false,
58-
essential: false,
59-
env: {},
60-
cacheKey: "ubuntu2404-aarch64",
61-
artifactMarker: "ubuntu2404",
62-
isBroken: false,
63-
},
64-
ubuntu2204_amd64: {
65-
name: "Ubuntu 22.04 (amd64)",
66-
os: "ubuntu-22.04",
67-
buildEnvScript: buildEnvScriptPath("ubuntu.sh"),
68-
isOnSelfHostedRunner: false,
69-
essential: false,
70-
env: {},
71-
cacheKey: "ubuntu2204-amd64",
72-
artifactMarker: "ubuntu2204",
73-
isBroken: false,
74-
},
75-
windows_amd64: {
76-
name: "Windows (amd64)",
77-
os: "windows-latest",
78-
buildEnvScript: buildEnvScriptPath("windows.sh"),
79-
isOnSelfHostedRunner: false,
80-
essential: false,
81-
env: {
82-
CARGO_INCREMENTAL: "0",
83-
},
84-
cacheKey: "windows-amd64",
85-
artifactMarker: null,
86-
isBroken: true,
87-
},
88-
macos_amd64: {
89-
name: "macOS (amd64)",
90-
os: "macos-13",
91-
buildEnvScript: buildEnvScriptPath("macos.sh"),
92-
isOnSelfHostedRunner: false,
93-
essential: false,
94-
env: {},
95-
cacheKey: "macos-amd64",
96-
artifactMarker: null,
97-
isBroken: false,
98-
},
99-
macos_aarch64: {
100-
name: "macOS (aarch64)",
101-
os: selfHostedRunners.macosAarch64,
102-
buildEnvScript: buildEnvScriptPath("macos.sh"),
103-
isOnSelfHostedRunner: true,
104-
essential: false,
105-
env: {},
106-
cacheKey: "macos-aarch64",
107-
artifactMarker: null,
108-
isBroken: false,
109-
},
53+
// ubuntu2404_aarch64: {
54+
// name: "Ubuntu 24.04 (aarch64)",
55+
// os: "ubuntu-24.04-arm",
56+
// buildEnvScript: buildEnvScriptPath("ubuntu.sh"),
57+
// isOnSelfHostedRunner: false,
58+
// essential: false,
59+
// env: {},
60+
// cacheKey: "ubuntu2404-aarch64",
61+
// artifactMarker: "ubuntu2404",
62+
// isBroken: false,
63+
// },
64+
// ubuntu2204_amd64: {
65+
// name: "Ubuntu 22.04 (amd64)",
66+
// os: "ubuntu-22.04",
67+
// buildEnvScript: buildEnvScriptPath("ubuntu.sh"),
68+
// isOnSelfHostedRunner: false,
69+
// essential: false,
70+
// env: {},
71+
// cacheKey: "ubuntu2204-amd64",
72+
// artifactMarker: "ubuntu2204",
73+
// isBroken: false,
74+
// },
75+
// windows_amd64: {
76+
// name: "Windows (amd64)",
77+
// os: "windows-latest",
78+
// buildEnvScript: buildEnvScriptPath("windows.sh"),
79+
// isOnSelfHostedRunner: false,
80+
// essential: false,
81+
// env: {
82+
// CARGO_INCREMENTAL: "0",
83+
// },
84+
// cacheKey: "windows-amd64",
85+
// artifactMarker: null,
86+
// isBroken: true,
87+
// },
88+
// macos_amd64: {
89+
// name: "macOS (amd64)",
90+
// os: "macos-13",
91+
// buildEnvScript: buildEnvScriptPath("macos.sh"),
92+
// isOnSelfHostedRunner: false,
93+
// essential: false,
94+
// env: {},
95+
// cacheKey: "macos-amd64",
96+
// artifactMarker: null,
97+
// isBroken: false,
98+
// },
99+
// macos_aarch64: {
100+
// name: "macOS (aarch64)",
101+
// os: selfHostedRunners.macosAarch64,
102+
// buildEnvScript: buildEnvScriptPath("macos.sh"),
103+
// isOnSelfHostedRunner: true,
104+
// essential: false,
105+
// env: {},
106+
// cacheKey: "macos-aarch64",
107+
// artifactMarker: null,
108+
// isBroken: false,
109+
// },
110110
} satisfies Platforms;
111111

112112
// A platform for running things that are platform-independent.

.github/workflows/build.yml

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: build
22

33
on:
44
push:
5+
branches:
6+
- "*"
57
tags:
68
- "v*.*.*"
79
schedule:
@@ -137,26 +139,26 @@ jobs:
137139
asset_name: ${{ steps.set-upload-params.outputs.artifact-name }}.tar.gz
138140
asset_path: archive.tar.gz
139141

140-
publish-release:
141-
needs:
142-
- draft-release
143-
- build
144-
name: Publish release
145-
if: startsWith(github.ref, 'refs/tags/')
146-
runs-on: ubuntu-24.04
147-
timeout-minutes: 50
148-
permissions:
149-
contents: write
150-
steps:
151-
- name: Publish release
152-
uses: actions/github-script@v7
153-
env:
154-
RELEASE_ID: ${{ needs.draft-release.outputs.release-id }}
155-
with:
156-
script: |
157-
github.rest.repos.updateRelease({
158-
owner: context.repo.owner,
159-
repo: context.repo.repo,
160-
release_id: process.env.RELEASE_ID,
161-
draft: false
162-
});
142+
# publish-release:
143+
# needs:
144+
# - draft-release
145+
# - build
146+
# name: Publish release
147+
# if: startsWith(github.ref, 'refs/tags/')
148+
# runs-on: ubuntu-24.04
149+
# timeout-minutes: 50
150+
# permissions:
151+
# contents: write
152+
# steps:
153+
# - name: Publish release
154+
# uses: actions/github-script@v7
155+
# env:
156+
# RELEASE_ID: ${{ needs.draft-release.outputs.release-id }}
157+
# with:
158+
# script: |
159+
# github.rest.repos.updateRelease({
160+
# owner: context.repo.owner,
161+
# repo: context.repo.repo,
162+
# release_id: process.env.RELEASE_ID,
163+
# draft: false
164+
# });
File renamed without changes.
File renamed without changes.
File renamed without changes.

crates/humanode-runtime/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ sp-keystore = { workspace = true }
112112

113113
[features]
114114
default = ["std"]
115+
evm-tracing = []
115116
runtime-benchmarks = [
116117
"frame-benchmarking/runtime-benchmarks",
117118
"frame-support/runtime-benchmarks",

0 commit comments

Comments
 (0)