Skip to content
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

Update revive to 0.1.0-dev.5 version #14

Merged
merged 9 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
cache: 'npm'

- name: Install packages
Expand All @@ -24,14 +24,14 @@ jobs:
- name: Install solc
run: |
mkdir -p solc
wget https://github.com/ethereum/solidity/releases/download/v0.8.26/solc-static-linux \
wget https://github.com/ethereum/solidity/releases/download/v0.8.28/solc-static-linux \
-O solc/solc && chmod +x solc/solc
echo "$(pwd)/solc/" >> $GITHUB_PATH

- name: Install resolc
run: |
mkdir -p resolc
wget https://github.com/smiasojed/revive/releases/download/0.0.1/resolc \
wget https://github.com/paritytech/revive/releases/download/v0.1.0-dev.5/resolc \
-O resolc/resolc && chmod +x resolc/resolc
echo "$(pwd)/resolc/" >> $GITHUB_PATH

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:22-bookworm-slim

ENV SOLC_VERSION="0.8.28"
ENV RESOLC_VERSION="0.1.0-dev-2"
ENV RESOLC_VERSION="0.1.0-dev.5"

# Install dependencies
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion k8s/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ helm install prometheus-adapter prometheus-community/prometheus-adapter --namesp

```sh
eval $(minikube docker-env)
docker build --platform=linux/amd64 -t paritytech/revive-remix-backend:1.3.1 ../
docker build --platform=linux/amd64 -t paritytech/revive-remix-backend:1.3.2 ../
```

### Deploy your application and configure monitoring
Expand Down
2 changes: 1 addition & 1 deletion k8s/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: revive-remix-backend
image: paritytech/revive-remix-backend:1.3.1
image: paritytech/revive-remix-backend:1.3.2
imagePullPolicy: IfNotPresent
ports:
- name: web
Expand Down
2 changes: 1 addition & 1 deletion k8s/pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
spec:
containers:
- name: revive-remix-backend
image: paritytech/revive-remix-backend:1.3.1
image: paritytech/revive-remix-backend:1.3.2
ports:
- containerPort: 3000
resources:
Expand Down
Loading