Skip to content

Commit

Permalink
Remove nodejs from docker image (#3627)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-mobilecoin authored Oct 18, 2023
1 parent 569d2a6 commit ef240ac
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
29 changes: 16 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions:
jobs:
build-dev:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand All @@ -42,7 +42,7 @@ jobs:

build-prod:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand All @@ -62,11 +62,14 @@ jobs:

build-and-test-wasm:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Build and test the wasm-test crate
Expand All @@ -76,7 +79,7 @@ jobs:

lint-rust:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand All @@ -93,7 +96,7 @@ jobs:

build-and-test-go:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand Down Expand Up @@ -126,7 +129,7 @@ jobs:

docs:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand All @@ -145,7 +148,7 @@ jobs:

mc-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

strategy:
matrix:
Expand Down Expand Up @@ -188,7 +191,7 @@ jobs:

consensus-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

strategy:
matrix:
Expand Down Expand Up @@ -221,7 +224,7 @@ jobs:

fog-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

strategy:
matrix:
Expand Down Expand Up @@ -272,7 +275,7 @@ jobs:

fog-ingest-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand All @@ -295,7 +298,7 @@ jobs:

fog-conformance-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand Down Expand Up @@ -335,7 +338,7 @@ jobs:

fog-local-network-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand Down Expand Up @@ -522,7 +525,7 @@ jobs:

minting-and-burning-tests:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

steps:
- name: Check out code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependent-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
android-bindings:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

permissions:
pull-requests: write
Expand All @@ -30,7 +30,7 @@ jobs:

full-service:
runs-on: [self-hosted, Linux, large]
container: mobilecoin/builder-install:v0.0.30
container: mobilecoin/builder-install:v0.0.31

permissions:
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mobilecoin-dev-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- generate-metadata
runs-on: [self-hosted, Linux, large-cd]
container:
image: mobilecoin/rust-sgx-base:v0.0.30
image: mobilecoin/rust-sgx-base:v0.0.31

env:
ENCLAVE_SIGNING_KEY_PATH: ${{ github.workspace }}/.tmp/enclave_signing.pem
Expand Down
4 changes: 2 additions & 2 deletions .mobconf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[image]
url = mobilecoin/builder-install
tag = v0.0.30
tag = v0.0.31
[builder-install]
url = mobilecoin/builder-install
tag = v0.0.30
tag = v0.0.31
[signing-tools]
url = mobilecoin/signing-tools
tag = v0.0.1

0 comments on commit ef240ac

Please sign in to comment.