Skip to content

Commit

Permalink
Try s/ubuntu-latest/ubuntu-20.04/
Browse files Browse the repository at this point in the history
Co-authored-by: Reuven Podmazo <[email protected]>
  • Loading branch information
assafmo and reuvenpo committed Jul 5, 2022
1 parent ba2d7db commit 4db2d25
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push]

jobs:
Enclave-Unit-Tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Intel's SGX SDK
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
make clean-enclave
Build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
path: ./x/compute/internal/keeper/testdata/test-contract/static-too-high-initial-memory.wasm

Go-Tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: Build
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
LOG_LEVEL=ERROR go test -p 1 -timeout 20m -v ./x/compute/internal/...
Clippy:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Intel's SGX SDK
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
SGX_MODE=HW make clippy
XBuild-CLI:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
Expand All @@ -271,7 +271,7 @@ jobs:
run: make build_windows_cli

Integration-Tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build docker testnet
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
db_backend: [rocksdb, goleveldb]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env: # Or as an environment variable
SPID_TESTNET: ${{ secrets.SPID_TESTNET }}
API_KEY_TESTNET: ${{ secrets.API_KEY_TESTNET }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
path: secretnetwork_${{ steps.get_version.outputs.VERSION }}_testnet_${{ matrix.db_backend }}_amd64.deb

build-deb-mainnet:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-20.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Build CLI
Expand All @@ -139,7 +139,7 @@ jobs:
path: secretcli-${{runner.os}}

x-build-cli:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
Expand All @@ -160,7 +160,7 @@ jobs:
path: secretcli-MacOS-arm64

publish-localsecret:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env:
REGISTRY: ghcr.io
IMAGE_NAME: scrtlabs/localsecret
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:

Release:
needs: [native-build-cli, build-deb-testnet, build-deb-mainnet, x-build-cli]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Get the version
Expand Down

0 comments on commit 4db2d25

Please sign in to comment.