Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save Artifacts from GitHub Actions #3692

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
- run: make gtest-bootstrap
- run: LDFLAGS=-fsanitize=address CFLAGS=-fsanitize=address make -j$(nproc)
- run: ./codec_unittest
# Upload artifacts
- uses: actions/upload-artifact@v3
with:
name: asan-artifacts
path: codec_unittest

windows:
runs-on: windows-2019
Expand All @@ -52,6 +57,11 @@ jobs:
CFLAGS: -WX
run: ./AutoBuildForWindows.bat
- run: ./bin/Win32/Release/codec_unittest.exe
# Upload artifacts
- uses: actions/upload-artifact@v3
with:
name: windows-artifacts
path: bin

mingw:
runs-on: windows-2019
Expand Down Expand Up @@ -79,9 +89,15 @@ jobs:
- run: meson builddir
- run: ninja -C builddir -v
- run: meson test -C builddir -v
# Upload artifacts
- uses: actions/upload-artifact@v3
with:
name: mingw-artifacts
path: builddir

macos:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- run: brew install nasm meson
Expand All @@ -93,6 +109,11 @@ jobs:
- run: meson builddir --werror
- run: ninja -C builddir -v
- run: meson test -C builddir -v
# Upload artifacts
- uses: actions/upload-artifact@v3
with:
name: macos-artifacts
path: builddir

linux-cross-arm:
runs-on: ubuntu-latest
Expand Down