Skip to content

Commit

Permalink
Upgrades.
Browse files Browse the repository at this point in the history
  • Loading branch information
shimkiv committed Mar 8, 2024
1 parent b827b9d commit fd0dd46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Install and cache Hetzner Cloud CLI
uses: 3bit/setup-hcloud@v2
- name: Create mina-build-system-amd64 cloud VM
run: hcloud server create --name mina-build-system-amd64 --datacenter fsn1-dc14 --primary-ipv4 35577977 --image 132107836 --type cpx41 --ssh-key app@localhost --start-after-create
run: hcloud server create --name mina-build-system-amd64 --datacenter fsn1-dc14 --primary-ipv4 35577977 --image 153392983 --type cpx41 --ssh-key app@localhost --start-after-create
env:
HCLOUD_TOKEN: ${{ secrets.HETZNER_API_TOKEN }}
- name: Sleep for 120 seconds
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install and cache Hetzner Cloud CLI
uses: 3bit/setup-hcloud@v2
- name: Create mina-build-system-arm64 cloud VM
run: hcloud server create --name mina-build-system-arm64 --datacenter fsn1-dc14 --primary-ipv4 45241536 --image 138928835 --type cax31 --ssh-key app@localhost --start-after-create
run: hcloud server create --name mina-build-system-arm64 --datacenter fsn1-dc14 --primary-ipv4 45241536 --image 153393088 --type cax31 --ssh-key app@localhost --start-after-create
env:
HCLOUD_TOKEN: ${{ secrets.HETZNER_API_TOKEN }}
- name: Sleep for 120 seconds
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Install and cache Hetzner Cloud CLI
uses: 3bit/setup-hcloud@v2
- name: Create mina-build-system-arm64 cloud VM
run: hcloud server create --name mina-build-system-arm64 --datacenter fsn1-dc14 --primary-ipv4 45241536 --image 138928835 --type cax21 --ssh-key app@localhost --start-after-create
run: hcloud server create --name mina-build-system-arm64 --datacenter fsn1-dc14 --primary-ipv4 45241536 --image 153393088 --type cax21 --ssh-key app@localhost --start-after-create
env:
HCLOUD_TOKEN: ${{ secrets.HETZNER_API_TOKEN }}
- name: Sleep for 120 seconds
Expand Down
2 changes: 1 addition & 1 deletion configuration/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:14-bookworm

RUN apt update && apt install -y --no-install-recommends python3 python3-pip jq wget curl psmisc libpq-dev libjemalloc-dev libffi-dev nginx netcat-traditional && apt clean && rm -rf /var/lib/apt/lists/*

ENV NODE_VERSION=20.8.1
ENV NODE_VERSION=20.11.1
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
ENV NVM_DIR=/root/.nvm
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
Expand Down
11 changes: 0 additions & 11 deletions scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,6 @@ gitPullAll() {
cd ${DIR}
echo ""
echo "Updating the \"$(pwd)\" repo:"
# if [[ ${DIR} == *"mina" ]]; then
# cd src/lib/o1js/src/bindings
# git stash
# cd ../../../../../
# cd src/lib/o1js
# git stash
# git submodule sync
# git submodule update --recursive --init
# cd ../../../
# fi
git pull
git reset
git clean -f
Expand Down Expand Up @@ -94,7 +84,6 @@ for TARGET_BRANCH in "${TARGET_BRANCHES[@]}"; do

gitPullAll && gitPullAll
git checkout ${TARGET_BRANCH}
rm -rf ${MINA_REPO_DIR}/src/lib/snarkyjs || true
gitPullAll && gitPullAll
opam switch import --switch mina --yes opam.export
opam switch import opam.export --yes
Expand Down

0 comments on commit fd0dd46

Please sign in to comment.