Compare commits
2 Commits
a0e6005acd
...
3cad519f00
Author | SHA1 | Date |
---|---|---|
cascode | 3cad519f00 | |
cascode | f9417f49de |
|
@ -12,29 +12,33 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
# TODO(cascode) cache checkout for build and test stages?
|
# TODO(cascode) cache checkout for build and test stages?
|
||||||
lint:
|
lint:
|
||||||
container: &BUILD_CONTAINER
|
container:
|
||||||
# TODO use communitymedia docker registry
|
# TODO use communitymedia docker registry
|
||||||
image: &BUILDER_IMAGE "cascode/aural-isle-ci:2"
|
image: "cascode/aural-isle-ci:0"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
github-server-url: &GIT_URL "https://code.communitymedia.network"
|
github-server-url: "https://code.communitymedia.network"
|
||||||
- name: rustfmt
|
- name: rustfmt
|
||||||
run: cargo fmt --check
|
run: cargo fmt --check
|
||||||
build:
|
build:
|
||||||
container: *BUILD_CONTAINER
|
container:
|
||||||
|
# TODO use communitymedia docker registry
|
||||||
|
image: "cascode/aural-isle-ci:2"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
github-server-url: *GIT_URL
|
github-server-url: "https://code.communitymedia.network"
|
||||||
- name: build
|
- name: build
|
||||||
run: cargo build
|
run: cargo build
|
||||||
# TODO(cascode) cache builds for test stage
|
# TODO(cascode) cache builds for test stage
|
||||||
test:
|
test:
|
||||||
container: *BUILD_CONTAINER
|
container:
|
||||||
|
# TODO use communitymedia docker registry
|
||||||
|
image: "cascode/aural-isle-ci:2"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
github-server-url: *GIT_URL
|
github-server-url: "https://code.communitymedia.network"
|
||||||
- name: run unit tests
|
- name: run unit tests
|
||||||
run: cargo test
|
run: cargo test
|
||||||
|
|
Loading…
Reference in New Issue