Skip to content

Commit

Permalink
Updated workflow to run on docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
IhorShevchuk committed Mar 7, 2024
1 parent 3bf3cec commit 4a7adf5
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/buiild.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,21 @@ on:
- 'main'

jobs:
Build:
linux:
strategy:
fail-fast: false
matrix:
image:
- "swift:5.9.0"
name: Linux
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v2
with:
clean: true
submodules: recursive
- uses: sersoft-gmbh/swifty-linux-action@v3
with:
release-version: 5.9.2
- run: |
rm -fr .build | echo "Removed build folder"
swift build -c release --target RHVoiceCore

0 comments on commit 4a7adf5

Please sign in to comment.