-
Notifications
You must be signed in to change notification settings - Fork 442
chore: migrate Ninja projects here #1110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 29 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
0bbe473
Motoko hello world - remove ninja-specific parts
viviveevee 9a5cffe
rust Hello World
viviveevee 6b4c3cd
update BUILD.md
viviveevee b79240f
add candid-extractor to CI
viviveevee ef0115f
fix rust/parallel_calls
viviveevee cc8cd66
...again
viviveevee a6c0549
Update motoko/hello_world/backend/app.mo
viviveevee b60c947
add open-in-ninja button to readmes
viviveevee 34f18a2
add rust/flying_ninja
viviveevee d16f8e9
add motoko/flying_ninja
viviveevee d8006e9
add motoko/llm_chatbot
viviveevee 2ad230c
add mops to setup
viviveevee 69e878b
add rust/llm_chatbot
viviveevee 8e3f2c8
add motoko/daily_planner
viviveevee c8b8a4d
add rust/daily_planner
viviveevee ddd6681
candid formatting
viviveevee c2d0b37
add motoko/backend_only
viviveevee 078ac16
add rust/backend_only
viviveevee 513c076
fix backend_only
viviveevee 9183c95
add rust/evm_block_explorer
viviveevee 81dee2d
add motoko/evm_block_explorre
viviveevee 850d304
forgot Makefile
viviveevee b637550
add motoko/filevault
viviveevee 4b7a223
add motoko/tokenmania
viviveevee 578b525
add rust/tokenmania
viviveevee 77141ea
add hosting/react
viviveevee ee0b8bb
hosting/my_crypto_blog
viviveevee 6fc8355
add rust/motoko who_am_i
viviveevee 8d5054a
update codeowners
viviveevee 70a094d
move to one .yml file for multiple examples
viviveevee 9c51a2b
target correct branch
viviveevee 186e585
fix matrix definition
viviveevee 33113d5
provision linux container
viviveevee 716de6b
skip bare ubuntu
viviveevee 97fd3de
revert provision script changes
viviveevee 9d95b29
skip npm i
viviveevee 698e418
Merge branch 'master' into severin/consolidate-ninja-projects
viviveevee e560645
revert rust/parallel_calls to be able to merge
viviveevee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: hosting-my-crypto-blog | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - hosting/my_crypto_blog/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/hosting-my-crypto-blog-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| hosting-my-crypto-blog-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Hosting My Crypto Blog Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd hosting/my_crypto_blog | ||
| make install | ||
| popd | ||
| hosting-my-crypto-blog-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Hosting My Crypto Blog Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd hosting/my_crypto_blog | ||
| make install | ||
| popd | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: hosting-react | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - hosting/react/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/hosting-react-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| hosting-react-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Hosting React Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd hosting/react | ||
| make install | ||
| popd | ||
| hosting-react-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Hosting React Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd hosting/react | ||
| make install | ||
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: motoko-backend-only | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - motoko/backend_only/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/motoko-backend-only-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| motoko-backend-only-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Motoko Backend Only Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/backend_only | ||
| make test | ||
| popd | ||
| motoko-backend-only-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Motoko Backend Only Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/backend_only | ||
| make test | ||
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: motoko-daily-planner | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - motoko/daily_planner/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/motoko-daily-planner-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| motoko-daily-planner-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Motoko Daily Planner Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/daily_planner | ||
| make test | ||
| popd | ||
| motoko-daily-planner-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Motoko Daily Planner Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/daily_planner | ||
| make test | ||
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: motoko-evm-block-explorer | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - motoko/evm_block_explorer/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/motoko-evm-block-explorer-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| motoko-evm-block-explorer-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Motoko Evm Block Explorer Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/evm_block_explorer | ||
| make install | ||
| popd | ||
| motoko-evm-block-explorer-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Motoko Evm Block Explorer Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/evm_block_explorer | ||
| make install | ||
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: motoko-filevault | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - motoko/filevault/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/motoko-filevault-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| motoko-filevault-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Motoko Filevault Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/filevault | ||
| make install | ||
| popd | ||
| motoko-filevault-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Motoko Filevault Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/filevault | ||
| make install | ||
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| name: motoko-flying-ninja | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| paths: | ||
| - motoko/flying_ninja/** | ||
| - .github/workflows/provision-darwin.sh | ||
| - .github/workflows/provision-linux.sh | ||
| - .github/workflows/motoko-flying-ninja-example.yml | ||
| - .ic-commit | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| motoko-flying-ninja-darwin: | ||
| runs-on: macos-15 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Darwin | ||
| run: bash .github/workflows/provision-darwin.sh | ||
| - name: Motoko Flying Ninja Darwin | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/flying_ninja | ||
| make test | ||
| popd | ||
| motoko-flying-ninja-linux: | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - uses: actions/checkout@v1 | ||
| - name: Provision Linux | ||
| run: bash .github/workflows/provision-linux.sh | ||
| - name: Motoko Flying Ninja Linux | ||
| run: | | ||
| dfx start --background | ||
| pushd motoko/flying_ninja | ||
| make test | ||
| popd |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.