tar.gz the file before uploading to preserve executable flags #72
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build binaries for all platforms | |
on: | |
push: | |
tags: | |
- "v*" | |
branches: | |
- main | |
workflow_dispatch: | |
pull_request: | |
permissions: | |
contents: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { name: "Linux-x86_64", target: x86_64-linux, os: ubuntu-20.04 } | |
- { name: "macOS-x86_64", target: x86_64-darwin, os: macOS-13 } | |
- { name: "macOS-aarch64", target: aarch64-darwin, os: macOS-14 } | |
# - { | |
# name: "windows-x86_64", | |
# target: x86_64-windows, | |
# os: windows-latest, | |
# } | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Check for release | |
id: is-release | |
shell: bash | |
run: | | |
unset IS_RELEASE ; if [[ $GITHUB_REF =~ ^refs/tags/v[0-9].* ]]; then IS_RELEASE='true' ; fi | |
echo "IS_RELEASE=${IS_RELEASE}" >> $GITHUB_OUTPUT | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install packaged | |
run: | | |
pip install . | |
- name: Build binary | |
id: build | |
shell: bash | |
run: | | |
# aliens: requires no source | |
ALIENS_NAME="aliens-${{ matrix.target }}.tar.gz" | |
ALIENS_PATH=${PWD}/${ALIENS_NAME} | |
packaged ./aliens.bin 'pip install pygame' 'python -m pygame.examples.aliens' | |
# textual: requires no source | |
TEXTUAL_NAME="textual-${{ matrix.target }}.tar.gz" | |
TEXTUAL_PATH=${PWD}/${TEXTUAL_NAME} | |
packaged ./textual.bin 'pip install textual' 'python -m textual' | |
# IPython: requires no source | |
IPYTHON_NAME="ipython-${{ matrix.target }}.tar.gz" | |
IPYTHON_PATH=${PWD}/${IPYTHON_NAME} | |
packaged ./ipython.bin 'pip install ipython' 'ipython' | |
# ./examples/mandelbrot | |
MANDELBROT_NAME="mandelbrot-${{ matrix.target }}.tar.gz" | |
MANDELBROT_PATH=${PWD}/${MANDELBROT_NAME} | |
packaged ./mandelbrot.bin 'pip install -r requirements.txt' 'python mandelbrot.py' ./example/mandelbrot | |
# ./examples/minesweeper | |
MINESWEEPER_NAME="minesweeper-${{ matrix.target }}.tar.gz" | |
MINESWEEPER_PATH=${PWD}/${MINESWEEPER_NAME} | |
packaged ./example/minesweeper | |
tar czf ./minesweeper.bin $MINESWEEPER_NAME | |
# Setup output paths for upload | |
echo "ALIENS_NAME=${ALIENS_NAME}" >> $GITHUB_OUTPUT | |
echo "ALIENS_PATH=${ALIENS_PATH}" >> $GITHUB_OUTPUT | |
echo "TEXTUAL_NAME=${TEXTUAL_NAME}" >> $GITHUB_OUTPUT | |
echo "TEXTUAL_PATH=${TEXTUAL_PATH}" >> $GITHUB_OUTPUT | |
echo "IPYTHON_NAME=${IPYTHON_NAME}" >> $GITHUB_OUTPUT | |
echo "IPYTHON_PATH=${IPYTHON_PATH}" >> $GITHUB_OUTPUT | |
echo "MANDELBROT_NAME=${MANDELBROT_NAME}" >> $GITHUB_OUTPUT | |
echo "MANDELBROT_PATH=${MANDELBROT_PATH}" >> $GITHUB_OUTPUT | |
echo "MINESWEEPER_NAME=${MINESWEEPER_NAME}" >> $GITHUB_OUTPUT | |
echo "MINESWEEPER_PATH=${MINESWEEPER_PATH}" >> $GITHUB_OUTPUT | |
- name: Upload aliens | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.build.outputs.ALIENS_NAME }} | |
path: ${{ steps.build.outputs.ALIENS_PATH }} | |
- name: Upload textual | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.build.outputs.TEXTUAL_NAME }} | |
path: ${{ steps.build.outputs.TEXTUAL_PATH }} | |
- name: Upload IPython | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.build.outputs.IPYTHON_NAME }} | |
path: ${{ steps.build.outputs.IPYTHON_PATH }} | |
- name: Upload mandelbrot | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.build.outputs.MANDELBROT_NAME }} | |
path: ${{ steps.build.outputs.MANDELBROT_PATH }} | |
- name: Upload minesweeper | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ steps.build.outputs.MINESWEEPER_NAME }} | |
path: ${{ steps.build.outputs.MINESWEEPER_PATH }} | |
- name: Publish packages | |
uses: softprops/action-gh-release@v1 | |
if: steps.is-release.outputs.IS_RELEASE | |
with: | |
draft: true | |
files: | | |
${{ steps.build.outputs.ALIENS_PATH }} | |
${{ steps.build.outputs.TEXTUAL_PATH }} | |
${{ steps.build.outputs.IPYTHON_PATH }} | |
${{ steps.build.outputs.MANDELBROT_PATH }} | |
${{ steps.build.outputs.MINESWEEPER_PATH }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |