-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix CODEOWNERS and workflow for canister-logs example (#872)
- Loading branch information
Showing
7 changed files
with
144 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains 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 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-canister-logs | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- motoko/canister_logs/** | ||
- .github/workflows/provision-darwin.sh | ||
- .github/workflows/provision-linux.sh | ||
- .github/workflows/motoko-canister-logs-example.yaml | ||
- .ic-commit | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
motoko-canister-logs-example-darwin: | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Darwin | ||
run: bash .github/workflows/provision-darwin.sh | ||
- name: Motoko Canister Logs Darwin | ||
run: | | ||
dfx start --background | ||
pushd motoko/canister_logs | ||
make test | ||
popd | ||
motoko-canister-logs-example-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Linux | ||
run: bash .github/workflows/provision-linux.sh | ||
- name: Motoko Canister Logs Linux | ||
run: | | ||
dfx start --background | ||
pushd motoko/canister_logs | ||
make test | ||
popd |
This file contains 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: rust-canister-logs | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- rust/canister_logs/** | ||
- .github/workflows/provision-darwin.sh | ||
- .github/workflows/provision-linux.sh | ||
- .github/workflows/rust-canister-logs-example.yaml | ||
- .ic-commit | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
rust-canister-logs-example-darwin: | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Darwin | ||
run: bash .github/workflows/provision-darwin.sh | ||
- name: Rust Canister Logs Darwin | ||
run: | | ||
dfx start --background | ||
pushd rust/canister_logs | ||
make test | ||
popd | ||
rust-canister-logs-example-linux: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Provision Linux | ||
run: bash .github/workflows/provision-linux.sh | ||
- name: Rust Canister Logs Linux | ||
run: | | ||
dfx start --background | ||
pushd rust/canister_logs | ||
make test | ||
popd |
This file contains 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,30 @@ | ||
.PHONY: all | ||
all: build | ||
|
||
.PHONY: build | ||
.SILENT: build | ||
build: | ||
dfx canister create CanisterLogs | ||
dfx build | ||
|
||
.PHONY: install | ||
.SILENT: install | ||
install: build | ||
dfx canister install CanisterLogs | ||
|
||
.PHONY: upgrade | ||
.SILENT: upgrade | ||
upgrade: build | ||
dfx canister install CanisterLogs --mode=upgrade | ||
|
||
.PHONY: test | ||
.SILENT: test | ||
test: install | ||
dfx canister call CanisterLogs print 'hi' | ||
dfx canister logs CanisterLogs \ | ||
| grep 'hi' && echo 'PASS' | ||
|
||
.PHONY: clean | ||
.SILENT: clean | ||
clean: | ||
rm -fr .dfx |
This file contains 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 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,30 @@ | ||
.PHONY: all | ||
all: build | ||
|
||
.PHONY: build | ||
.SILENT: build | ||
build: | ||
dfx canister create canister_logs | ||
dfx build | ||
|
||
.PHONY: install | ||
.SILENT: install | ||
install: build | ||
dfx canister install canister_logs | ||
|
||
.PHONY: upgrade | ||
.SILENT: upgrade | ||
upgrade: build | ||
dfx canister install canister_logs --mode=upgrade | ||
|
||
.PHONY: test | ||
.SILENT: test | ||
test: install | ||
dfx canister call canister_logs print 'hi' | ||
dfx canister logs canister_logs \ | ||
| grep 'hi' && echo 'PASS' | ||
|
||
.PHONY: clean | ||
.SILENT: clean | ||
clean: | ||
rm -fr .dfx |
This file contains 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