Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
StollD committed Sep 14, 2024
1 parent 4628316 commit b45a991
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"container": "fedora:40",
"runs-on": "ubuntu-latest",
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
Expand Down Expand Up @@ -140,17 +144,17 @@
"check",
],
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
"with": {
"fetch-depth": 0,
},
},
{
"name": "Install build dependencies",
"run": "dnf -y install tree && tree -a .",
},
{
"name": "Install build dependencies",
"run": "bash $SCRIPTS/pkg-fedora.sh install",
Expand Down Expand Up @@ -189,6 +193,10 @@
"check",
],
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
Expand Down Expand Up @@ -234,6 +242,10 @@
"check",
],
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
Expand Down Expand Up @@ -410,6 +422,10 @@
"release",
],
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
Expand Down Expand Up @@ -443,6 +459,10 @@
"release",
],
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
Expand Down Expand Up @@ -476,6 +496,10 @@
"release",
],
"steps": [
{
"name": "Install git",
"run": "dnf install -y git",
},
{
"name": "Checkout code",
"uses": "actions/checkout@v4",
Expand Down

0 comments on commit b45a991

Please sign in to comment.