Skip to content

Commit

Permalink
feat: Creating Linux Tebako packages using CI containers [8]
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Jan 28, 2025
1 parent 8c53bdd commit 0f2a4a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,19 @@ jobs:

- name: Package 1_hello_world
run: |
docker run -v ${{github.workspace}}:/mnt/w -t ghcr.io/tamatebako/tebako-ubuntu-20.04:latest \
docker run -v $PWD:/mnt/w -t ghcr.io/tamatebako/tebako-ubuntu-20.04:latest \
tebako press -r /mnt/w/tutorial/1_hello_world/hello_world.sample -e hello_world.rb -o /mnt/w/hello_world --patchelf
- name: Run packaged 1_hello_world application
run: |
${{github.workspace}}/hello_world
./hello_world
ldd hello_world
- name: Package 2_packaging_scenarios gemspec and gemfile sample
run: |
docker run -v ${{github.workspace}}:/mnt/w -t ghcr.io/tamatebako/tebako-ubuntu-20.04:latest \
tebako press -r tutorial/2_packaging_scenarios/gemspec_and_gemfile.sample -e tebako-table-cli -o /mnt/w/table.tebako --patchelf
docker run -v $PWD:/mnt/w -t ghcr.io/tamatebako/tebako-ubuntu-20.04:latest \
tebako press -r /mnt/w/tutorial/2_packaging_scenarios/gemspec_and_gemfile.sample -e tebako-table-cli -o /mnt/w/table.tebako --patchelf
- name: Run packaged 2_packaging_scenarios gemspec and gemfile sample
run: |
${{github.workspace}}/table.tebako
./table.tebako

0 comments on commit 0f2a4a0

Please sign in to comment.