Skip to content
Closed
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
23 changes: 23 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: ci-casper-sidecar

on:
pull_request:
branches:
- "main"

jobs:
build_and_test:
strategy:
matrix:
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b #v3.0.2

- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y aptly=1.4.0
aptly config show
4 changes: 1 addition & 3 deletions .github/workflows/publish-casper-node-util-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,8 @@ jobs:

- name: Install deps
run: |
echo "deb http://repo.aptly.info/ squeeze main" | sudo tee -a /etc/apt/sources.list.d/aptly.list
wget -qO - https://www.aptly.info/pubkey.txt | sudo apt-key add -
sudo apt-get update
sudo apt-get install -y aptly=1.4.0
sudo apt-get install -y aptly
aptly config show

- name: Import GPG key
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-24.04
code_name: noble
- os: ubuntu-22.04
code_name: jammy

runs-on: ${{ matrix.os }}

Expand Down