Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f054b62
use app-store instead of app_store
nick1udwig Nov 13, 2024
d0b9dfb
improve robustness of runtime build
nick1udwig Dec 3, 2024
657aca2
Format Rust code using rustfmt
github-actions[bot] Dec 3, 2024
385757d
Merge pull request #281 from kinode-dao/hf/fix-runtime-build
nick1udwig Dec 3, 2024
23ee399
update to support wit 1.0
dr-frmr Dec 9, 2024
4629a4a
update Cargo.toml metadata & license
nick1udwig Dec 11, 2024
946a933
bump wit-bindgen to 0.36 and use wit v1
nick1udwig Dec 12, 2024
55725fd
update templates
nick1udwig Dec 13, 2024
8d1a662
Merge pull request #283 from kinode-dao/hf/bump-wit-bindgen
nick1udwig Dec 13, 2024
484260e
workflow: pull down latest Kinode core
nick1udwig Dec 13, 2024
15240fe
use 0.27.0 wasi_snapshot_preview
nick1udwig Dec 17, 2024
9670a06
allow building non-simulation mode packages
nick1udwig Dec 17, 2024
b306536
Format Rust code using rustfmt
github-actions[bot] Dec 17, 2024
ad9a3df
allow building non-simulation mode packages for real
nick1udwig Dec 17, 2024
80042ba
Format Rust code using rustfmt
github-actions[bot] Dec 17, 2024
166d7ea
bump alloy version
nick1udwig Dec 17, 2024
9a13bc7
Format Rust code using rustfmt
github-actions[bot] Dec 17, 2024
dfaa989
Merge pull request #284 from kinode-dao/hf/bump-alloy
nick1udwig Dec 18, 2024
3ac6d93
update process_lib & process_macros deps
nick1udwig Dec 19, 2024
a6f6f78
Merge branch 'master' into hf/kinode-core-v0.10.0
nick1udwig Dec 20, 2024
07f92e2
bump versions; fix compiler warnings
nick1udwig Dec 28, 2024
29ec8da
Merge branch 'master' into hf/kinode-core-v0.10.0
nick1udwig Dec 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 19 additions & 20 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,27 +77,26 @@ jobs:
- name: Unzip the build output
run: unzip /tmp/kit-release/kit-x86_64-unknown-linux-gnu.zip

#- name: Get latest release from kinode-dao/kit
# id: get-latest-kinode-release
# uses: actions/github-script@v6
# with:
# script: |
# const repo = {
# owner: 'kinode-dao',
# repo: 'kinode',
# };
# const release = await github.rest.repos.getLatestRelease(repo);
# const asset = release.data.assets.find(asset => asset.name.match(/kinode-x86_64-unknown-linux-gnu\.zip/));
# if (!asset) {
# throw new Error('Asset not found');
# }
# return asset.browser_download_url;
# result-encoding: string
- name: Get latest release from kinode-dao/kinode
id: get-latest-kinode-release
uses: actions/github-script@v6
with:
script: |
const repo = {
owner: 'kinode-dao',
repo: 'kinode',
};
const release = await github.rest.repos.getLatestRelease(repo);
const asset = release.data.assets.find(asset => asset.name.match(/kinode-x86_64-unknown-linux-gnu\.zip/));
if (!asset) {
throw new Error('Asset not found');
}
return asset.browser_download_url;
result-encoding: string
- name: Download the Kinode release
run: wget -q https://files.yael.solutions/240906/kinode-x86_64-unknown-linux-gnu-simulation-mode.zip -O kinode.zip
#run: wget -q ${DOWNLOAD_URL} -O kinode.zip
#env:
# DOWNLOAD_URL: ${{ steps.get-latest-kinode-release.outputs.result }}
run: wget -q ${DOWNLOAD_URL} -O kinode.zip
env:
DOWNLOAD_URL: ${{ steps.get-latest-kinode-release.outputs.result }}
- name: Unzip the Kinode release
run: unzip kinode.zip

Expand Down
Loading
Loading