Skip to content

Commit

Permalink
Temporarily enable workflow on any push to test it
Browse files Browse the repository at this point in the history
  • Loading branch information
y-guyon committed Jan 11, 2024
1 parent e2ee23c commit b8e2c5d
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci-windows-artifacts.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# This workflow generates artifacts such as avifenc.exe and avifdec.exe for convenience.

name: CI Windows Artifacts
on:
push:
branches:
- main
on: [push, pull_request]

permissions:
contents: read
Expand All @@ -27,7 +24,7 @@ jobs:
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ext
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-somedeps
key: ${{ runner.os }}-${{ hashFiles('ext/*.cmd') }}-somedeps2
- name: Print cmake version
run: cmake --version
- uses: ilammy/setup-nasm@13cbeb366c45c4379d3478cdcbadd8295feb5028 # v1.5.1
Expand All @@ -49,9 +46,15 @@ jobs:
# Use clang-cl to build libyuv. The assembly code in libyuv is written in the
# GCC inline assembly format. Visual C++ doesn't support GCC inline assembly.
run: >
set "CC=clang-cl" && set "CXX=clang-cl"
set "CC=clang-cl"
set "CXX=clang-cl"
./libyuv.cmd
set "CC=" && set "CXX="
set "CC="
set "CXX="
- name: Build libjpeg
if: steps.cache-ext.outputs.cache-hit != 'true'
working-directory: ./ext
Expand Down

0 comments on commit b8e2c5d

Please sign in to comment.