ci: list artifacts and prep for multi cross test #3
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: cross compile dotnet app | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 7.x | |
- name: build dotnet executables | |
run: make build | |
- name: size of executables | |
run: make size | |
- name: file info | |
run: make file | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: bin/* | |
test: | |
defaults: | |
run: | |
shell: sh | |
needs: [build] | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ | |
"macos-14", | |
"windows-latest", | |
"ubuntu-latest"] | |
# arch: ["amd64"] | |
# alpine: [false] | |
# include: | |
# - os: "macos-14" | |
# arch: "arm64" | |
# - os: "ubuntu-latest" | |
# arch: "arm64" | |
# alpine: true | |
# docker: true | |
# - os: "ubuntu-latest" | |
# arch: "amd64" | |
# alpine: true | |
# docker: true | |
# - os: "ubuntu-latest" | |
# arch: "arm64" | |
# debian: true | |
# docker: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Download all workflow run artifacts | |
uses: actions/download-artifact@v4 | |
- name: list artifact | |
run: ls artifact/* | |
# - name: run executable | |
# run: bin/hello_dotnet-osx-arm64/Explore.Cli | |
# - name: Set up QEMU | |
# if: matrix.arch == 'arm64' && matrix.docker == true | |
# uses: docker/setup-qemu-action@v3 | |
# - name: test alpine ${{ matrix.arch }} package | |
# if: ${{ matrix.alpine == true }} | |
# run: docker run --platform=linux/${{ matrix.arch }} --rm -v $(pwd):/app alpine /bin/sh -c 'apk add --no-cache gcc libicu && ./app/artifacts' | |
# - name: test alpine ${{ matrix.arch }} package | |
# if: ${{ matrix.debian == true }} | |
# run: docker run --platform=linux/${{ matrix.arch }} --rm -v $(pwd):/app debian /bin/bash -c 'cd /app && ./script/unpack-and-test.sh' | |
# - name: test 'macos-14' | |
# if: ${{ runner.os == 'macos-14' }} | |
# run: bin/hello_dotnet-osx-arm64/Explore.Cli | |
# - name: test 'macos-12' | |
# if: ${{ runner.os == 'macos-12' }} | |
# run: bin/hello_dotnet-osx-x64/Explore.Cli | |
# - name: test 'windows-latest' | |
# if: ${{ runner.os == 'windows-latest' }} | |
# run: bin/hello_dotnet-win-x64/Explore.Cli.exe | |
# - name: test 'ubuntu-latest' | |
# if: ${{ runner.os == 'ubuntu-latest' && matrix.docker != true }} | |
# run: bin/hello_dotnet-linux-x64/Explore.Cli |