From c7d88a7a634a60c834a4f133f82aca78b7e7915d Mon Sep 17 00:00:00 2001 From: sabaimran <65192171+sabaimran@users.noreply.github.com> Date: Sat, 11 Dec 2021 12:50:30 -0500 Subject: [PATCH 1/3] Update build.yml to include exiftool package --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de8050da..1f719f00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,10 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Environment dependencies + run: | + sudo apt-get update + sudo apt-get -q -y install libimage-exiftool-perl - name: Cache conda uses: actions/cache@v2 env: From 386534c2368dea9605494015acc6de6851ac7b03 Mon Sep 17 00:00:00 2001 From: sabaimran <65192171+sabaimran@users.noreply.github.com> Date: Sat, 11 Dec 2021 12:52:13 -0500 Subject: [PATCH 2/3] Remove apt-get update from build.yml --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f719f00..f399979a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,8 +20,7 @@ jobs: - uses: actions/checkout@v2 - name: Environment dependencies run: | - sudo apt-get update - sudo apt-get -q -y install libimage-exiftool-perl + sudo apt-get -y install libimage-exiftool-perl - name: Cache conda uses: actions/cache@v2 env: From 930bdb540359dfba298062512efd97a9d27b0037 Mon Sep 17 00:00:00 2001 From: sabaimran <65192171+sabaimran@users.noreply.github.com> Date: Sat, 11 Dec 2021 12:54:32 -0500 Subject: [PATCH 3/3] Use ubuntu-latest as machine for Github Actions --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f399979a..4215b08c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: jobs: test: name: Run Tests - runs-on: "macos-latest" + runs-on: ubuntu-latest defaults: run: shell: bash -l {0}