From: Darren Tucker Date: Sun, 27 Nov 2022 01:19:37 +0000 (+1100) Subject: Run vmstartup from temp dir. X-Git-Tag: V_9_2_P1~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d664ddaec87bdc7385be8ef7f1337793e1679d48;p=thirdparty%2Fopenssh-portable.git Run vmstartup from temp dir. This will allow us to create ephemeral disk images per-runner. --- diff --git a/.github/workflows/selfhosted.yml b/.github/workflows/selfhosted.yml index 76acf2cfe..91a944a2c 100644 --- a/.github/workflows/selfhosted.yml +++ b/.github/workflows/selfhosted.yml @@ -81,6 +81,7 @@ jobs: run: autoreconf - name: startup VM run: vmstartup + working-directory: ${{ runner.temp }} - name: configure run: vmrun ./.github/configure.sh ${{ matrix.config }} - name: save config diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml index 76515c544..2b745536f 100644 --- a/.github/workflows/upstream.yml +++ b/.github/workflows/upstream.yml @@ -25,6 +25,7 @@ jobs: - uses: actions/checkout@main - name: startup VM run: vmstartup + working-directory: ${{ runner.temp }} - name: update source run: vmrun "cd /usr/src && cvs up -dPA usr.bin/ssh regress/usr.bin/ssh" - name: make clean