Skip to content

Commit

Permalink
source packaging tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Oct 4, 2024
1 parent 7fd72c3 commit 4824b2e
Showing 1 changed file with 24 additions and 18 deletions.
42 changes: 24 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,21 +222,27 @@ jobs:
# name: homebrew-${{ matrix.os }}
# path: 'buildout/testlogs/*'

# source_packaging:
# name: 'Source packaging unit tests'
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: true
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
# bundler-cache: true
# - run: ./dev/ci/setup-host source-packaging
# - run: ./dev/ci/run-tests-with-docker source-packaging
# - run: ls -R buildout
# - uses: actions/upload-artifact@v4
# with:
# name: source-packaging-${{ matrix.os }}
# path: 'buildout/testlogs/*'
source_packaging:
name: Source packaging tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true

- name: Setup bundle gem path
run: ./dev/ci/setup-bundle-gem-path

- name: Test
run: bundle exec rake test:source_packaging

- name: Archive logs
uses: actions/upload-artifact@v4
with:
name: source-packaging-test-logs
path: 'buildout/testlogs/*'

0 comments on commit 4824b2e

Please sign in to comment.