Skip to content

Commit 5eebec3

Browse files
committed
test build
Signed-off-by: bakhtin <a@bakhtin.net>
1 parent 0d0a96d commit 5eebec3

File tree

2 files changed

+28
-24
lines changed

2 files changed

+28
-24
lines changed

.github/workflows/release-reproducible.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
4343
build-reproducible:
4444
name: build and push reproducible image and binaries
45-
runs-on: ubuntu-latest
45+
runs-on: warp-ubuntu-2404-x64-32x #TODO
4646
needs: [extract-version, wait-for-release]
4747
permissions:
4848
packages: write
@@ -112,7 +112,9 @@ jobs:
112112
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
113113
run: |
114114
export GPG_TTY=$(tty)
115-
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --batch --import
115+
#echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --batch --import
116+
#TODO
117+
echo -n "$GPG_SIGNING_KEY" | gpg --batch --import
116118
117119
cd reproducible-artifacts
118120
tar -czf reth-reproducible-${{ needs.extract-version.outputs.VERSION }}-x86_64-unknown-linux-gnu.tar.gz reth-reproducible-${{ needs.extract-version.outputs.VERSION }}-x86_64-unknown-linux-gnu

.github/workflows/release.yml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -70,29 +70,29 @@ jobs:
7070
matrix:
7171
configs:
7272
- target: x86_64-unknown-linux-gnu
73-
os: ubuntu-24.04
73+
os: warp-ubuntu-2404-x64-32x #TODO
7474
profile: maxperf
7575
allow_fail: false
76-
- target: aarch64-unknown-linux-gnu
77-
os: ubuntu-24.04
78-
profile: maxperf
79-
allow_fail: false
80-
- target: x86_64-apple-darwin
81-
os: macos-13
82-
profile: maxperf
83-
allow_fail: false
84-
- target: aarch64-apple-darwin
85-
os: macos-14
86-
profile: maxperf
87-
allow_fail: false
88-
- target: x86_64-pc-windows-gnu
89-
os: ubuntu-24.04
90-
profile: maxperf
91-
allow_fail: false
92-
- target: riscv64gc-unknown-linux-gnu
93-
os: ubuntu-24.04
94-
profile: maxperf
95-
allow_fail: true
76+
# - target: aarch64-unknown-linux-gnu
77+
# os: ubuntu-24.04
78+
# profile: maxperf
79+
# allow_fail: false
80+
# - target: x86_64-apple-darwin
81+
# os: macos-13
82+
# profile: maxperf
83+
# allow_fail: false
84+
# - target: aarch64-apple-darwin
85+
# os: macos-14
86+
# profile: maxperf
87+
# allow_fail: false
88+
# - target: x86_64-pc-windows-gnu
89+
# os: ubuntu-24.04
90+
# profile: maxperf
91+
# allow_fail: false
92+
# - target: riscv64gc-unknown-linux-gnu
93+
# os: ubuntu-24.04
94+
# profile: maxperf
95+
# allow_fail: true
9696
build:
9797
- command: build
9898
binary: reth
@@ -132,7 +132,9 @@ jobs:
132132
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
133133
run: |
134134
export GPG_TTY=$(tty)
135-
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --batch --import
135+
#echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --batch --import
136+
#TODO
137+
echo -n "$GPG_SIGNING_KEY" | gpg --batch --import
136138
cd artifacts
137139
tar -czf ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}.tar.gz ${{ matrix.build.binary }}*
138140
echo "$GPG_PASSPHRASE" | gpg --passphrase-fd 0 --pinentry-mode loopback --batch -ab ${{ matrix.build.binary }}-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}.tar.gz

0 commit comments

Comments
 (0)