Skip to content

Commit

Permalink
ci: Remove support for Fedora 37
Browse files Browse the repository at this point in the history
  • Loading branch information
StollD committed Feb 6, 2024
1 parent 197f8f2 commit a20ab22
Showing 1 changed file with 0 additions and 87 deletions.
87 changes: 0 additions & 87 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,51 +164,6 @@
},
],
},
"build-f37": {
"name": "Build Fedora 37 package",
"container": "fedora:37",
"runs-on": "ubuntu-latest",
"needs": [
"check",
],
"steps": [
{
"name": "Restore workspace",
"uses": "actions/download-artifact@v3",
"with": {
"name": "workspace",
},
},
{
"name": "Install build dependencies",
"run": "bash $SCRIPTS/pkg-fedora.sh install",
},
{
"name": "Build package",
"run": "bash $SCRIPTS/pkg-fedora.sh build",
},
{
"name": "Sign package",
"env": {
"GPG_KEY_ID": "56C464BAAC421453",
"GPG_KEY": "${{ secrets.LINUX_SURFACE_GPG_KEY }}",
},
"run": "bash $SCRIPTS/pkg-fedora.sh sign",
},
{
"name": "Prepare release",
"run": "bash $SCRIPTS/pkg-fedora.sh release",
},
{
"name": "Upload artifacts",
"uses": "actions/upload-artifact@v3",
"with": {
"name": "fedora-37-latest",
"path": "release",
},
},
],
},
"build-f38": {
"name": "Build Fedora 38 package",
"container": "fedora:38",
Expand Down Expand Up @@ -305,7 +260,6 @@
"needs": [
"build-arch",
"build-deb",
"build-f37",
"build-f38",
"build-f39",
],
Expand All @@ -327,14 +281,6 @@
"path": "debian-latest",
},
},
{
"name": "Download Fedora 37 artifacts",
"uses": "actions/download-artifact@v3",
"with": {
"name": "fedora-37-latest",
"path": "fedora-37-latest",
},
},
{
"name": "Download Fedora 38 artifacts",
"uses": "actions/download-artifact@v3",
Expand Down Expand Up @@ -430,39 +376,6 @@
},
],
},
"repo-f37": {
"name": "Update Fedora 37 package repository",
"container": "fedora:37",
"runs-on": "ubuntu-latest",
"needs": [
"release",
],
"steps": [
{
"name": "Restore workspace",
"uses": "actions/download-artifact@v3",
"with": {
"name": "workspace",
},
},
{
"name": "Download artifacts",
"uses": "actions/download-artifact@v3",
"with": {
"name": "fedora-37-latest",
"path": "fedora-37-latest",
},
},
{
"name": "Update repository",
"env": {
"SURFACEBOT_TOKEN": "${{ secrets.LINUX_SURFACE_BOT_TOKEN }}",
"GIT_REF": "${{ github.ref }}",
},
"run": "bash $SCRIPTS/repo-fedora.sh $NAME 37",
},
],
},
"repo-f38": {
"name": "Update Fedora 38 package repository",
"container": "fedora:38",
Expand Down

0 comments on commit a20ab22

Please sign in to comment.