Skip to content

Commit

Permalink
Rename ubuntu workflow
Browse files Browse the repository at this point in the history
Build directly without container
  • Loading branch information
alanmcanonical committed Jun 12, 2024
1 parent 6ed54ac commit 04ffcad
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Automatus UBT22
name: Automatus UBUNTU22
on:
pull_request:
branches: [ master, 'stabilization*' ]
Expand All @@ -10,14 +10,12 @@ env:
jobs:
build-content:
name: Build Content
runs-on: ubuntu-latest
container:
image: fedora:latest
runs-on: ubuntu-22.04
steps:
- name: Install Deps
run: dnf install -y cmake make openscap-utils python3-pyyaml python3-jinja2 git python3-deepdiff python3-requests jq python3-pip
run: sudo apt-get update && sudo apt-get install -y cmake ninja-build libopenscap8 python3-yaml python3-jinja2 git python3-deepdiff python3-requests jq python3-pip
- name: Install deps python
run: pip install gitpython xmldiff
run: pip3 install gitpython xmldiff
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 04ffcad

Please sign in to comment.